GET /api/v1/anchors/
Retrieve a single anchor by ID. The detail response includes additional fields not present in the list response:first_event_hash and last_event_hash, which identify the hash chain boundaries for this anchor’s period.
Path Parameters
The anchor identifier (e.g.,
anc_abc123).Response
Response Fields
| Field | Type | Description |
|---|---|---|
id | string | Unique anchor identifier |
merkle_root | string | 64-character hex SHA-256 Merkle root of events in this period |
previous_anchor_hash | string | null | SHA-256 hash of the previous anchor’s merkle_root + tx_hash. Null for the first anchor |
first_event_hash | string | Hash of the first event in this anchor’s period |
last_event_hash | string | Hash of the last event in this anchor’s period |
events_count | integer | Number of events included in the Merkle tree |
period_start | string | ISO 8601 start of the anchoring period |
period_end | string | ISO 8601 end of the anchoring period |
chain | string | Blockchain network (base) |
status | string | pending, submitted, or confirmed |
tx_hash | string | null | Blockchain transaction hash |
block_number | integer | null | Block number of the confirmed transaction |
explorer_url | string | null | Direct link to the transaction on Basescan |
created_at | string | ISO 8601 timestamp of anchor creation |