KINETIC
KINETIC ANVILProtocol · API reference
Anvil-Version 2026-07-05 Start in the sandbox

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
VerbStatusWhat it does
crypto.traceliveMulti-hop asset trace across chains; writes back the asset map.
crypto.attributeplannedCluster and attribute traced wallets to real-world entities.
crypto.screenplannedSanctions and risk screening over addresses and entities.
crypto.monitorplannedContinuous watch on wallets and flows.
disclose.norwichplannedNorwich Pharmacal / third-party disclosure workflow.
disclose.s1782plannedUS 28 USC 1782 discovery workflow.
disclose.subpoenaplannedDomestic subpoena workflow.
restrain.wfoplannedWorldwide freezing order workflow.
restrain.troplannedTemporary restraining order workflow.
restrain.notifyplannedExchange and VASP notification of restraint.
judgment.domesticateplannedDomesticate a judgment into a target jurisdiction.
judgment.recognizeplannedForeign judgment recognition workflow.
execute.turnoverplannedTurnover order execution workflow.
execute.garnishplannedGarnishment workflow.
execute.receiverplannedReceivership workflow.
freeze.serveplannedServe a freeze packet on an off-ramp.
freeze.trackplannedTrack service and response on a served freeze.
report.exhibitplannedCourt-exhibit rendering of traced evidence.

New verbs ship without changing the public surface.