Skip to main content
GET
/
instructions
curl http://localhost:8081/instructions
[
  {
    "id": 1,
    "name": "HighValueTransaction",
    "text": "rule HighValueTransaction {\n    description \"Review any transaction above $10,000\"\n    when amount > 10000\n    then review\n         score   0.5\n         reason  \"Amount exceeds threshold\"\n}",
    "description": "Review any transaction above $10,000",
    "dsl_json": "{\"name\":\"HighValueTransaction\",\"when\":[...],\"then\":{...}}",
    "created_at": "2026-03-16T10:00:00Z",
    "updated_at": "2026-03-16T10:00:00Z"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.blnkfinance.com/llms.txt

Use this file to discover all available pages before exploring further.

Blnk Watch is currently in beta. Send us a message
Use this endpoint to list every instruction Watch has loaded. Each instruction represents a compiled rule that transactions are evaluated against.

Request

This endpoint has no path, query, or body parameters.
curl http://localhost:8081/instructions
[
  {
    "id": 1,
    "name": "HighValueTransaction",
    "text": "rule HighValueTransaction {\n    description \"Review any transaction above $10,000\"\n    when amount > 10000\n    then review\n         score   0.5\n         reason  \"Amount exceeds threshold\"\n}",
    "description": "Review any transaction above $10,000",
    "dsl_json": "{\"name\":\"HighValueTransaction\",\"when\":[...],\"then\":{...}}",
    "created_at": "2026-03-16T10:00:00Z",
    "updated_at": "2026-03-16T10:00:00Z"
  }
]

Response fields

Each item in the array matches the instruction object returned by compile and save instruction.
id
integer
Auto-generated instruction ID.
name
string
Unique rule name.
text
string
Original Watch DSL script text.
description
string
Rule description from the DSL script, if provided.
dsl_json
string
Compiled rule JSON used during transaction evaluation.
created_at
string
ISO 8601 timestamp of when the instruction was created.
updated_at
string
ISO 8601 timestamp of when the instruction was last updated.

Need help?

We are very happy to help you make the most of Blnk, regardless of whether it is your first time or you are switching from another tool. To ask questions or discuss issues, please contact us or join our Discord community.