● Reference
The verb catalog
Capabilities are job types dispatched through POST /v1/jobs. The REST surface stays fixed; the capability set grows.
§ How dispatch works
POST /v1/jobs { "type": "crypto.trace", "input": { ... } } -> 201 queued
GET /v1/jobs/{id} -> status / result
POST /v1/jobs/{id}/cancel -> canceled
Results land on the job and fire webhook events. Some verbs also write domain records, for example /v1/crypto/asset-map/{map_id}. The machine-readable catalog is GET /v1/capabilities.
§ Dispatch rules
1. A live verb executes.
2. A planned verb is reserved and returns 422 verb_not_available until it ships.
3. An unknown type inside a reserved namespace (crypto.* disclose.* restrain.* judgment.* execute.* freeze.* report.*) returns 422 unknown_verb.
4. Any other type is a custom tenant verb: accepted and queued for your own workers.
§ Catalog
| Verb | Status | What it does |
|---|---|---|
| crypto.trace | live | Multi-hop asset trace across chains; writes back the asset map. |
| crypto.attribute | planned | Cluster and attribute traced wallets to real-world entities. |
| crypto.screen | planned | Sanctions and risk screening over addresses and entities. |
| crypto.monitor | planned | Continuous watch on wallets and flows. |
| disclose.norwich | planned | Norwich Pharmacal / third-party disclosure workflow. |
| disclose.s1782 | planned | US 28 USC 1782 discovery workflow. |
| disclose.subpoena | planned | Domestic subpoena workflow. |
| restrain.wfo | planned | Worldwide freezing order workflow. |
| restrain.tro | planned | Temporary restraining order workflow. |
| restrain.notify | planned | Exchange and VASP notification of restraint. |
| judgment.domesticate | planned | Domesticate a judgment into a target jurisdiction. |
| judgment.recognize | planned | Foreign judgment recognition workflow. |
| execute.turnover | planned | Turnover order execution workflow. |
| execute.garnish | planned | Garnishment workflow. |
| execute.receiver | planned | Receivership workflow. |
| freeze.serve | planned | Serve a freeze packet on an off-ramp. |
| freeze.track | planned | Track service and response on a served freeze. |
| report.exhibit | planned | Court-exhibit rendering of traced evidence. |
New verbs ship without changing the public surface.