GET /api/tally/credits/history/:zid
Return mint / burn / transfer / claim rows for a ZID, ordered by Zeqond descending.
Auth
optionalAuth. Public for any ZID.
Query
| Param | Type | Default | Notes |
|---|---|---|---|
limit | integer | 50 | Clamped to [1, 200] |
before | integer (Zeqond) | none | Pagination cursor |
Response — 200
{
"ok": true,
"zid": "ZEQ07491829374",
"rows": [
{
"id": "uuid",
"type": "mint",
"amount": 1,
"operator_chain": ["KO42","NM21"],
"zeqond_number": "2287439213",
"machine_slug": "my-iot-fleet",
"memo": null
}
],
"next_before": "2287439200"
}
type ∈ mint, burn, transfer_out, transfer_in, claim.