Skip to content

API: Receipts

GET /v1/logs

Lists approved and blocked decisions for audit/debugging. Each entry doubles as a receipt — see that page for the full status lifecycle.

Request
GET /v1/logs?agentId=researchbot-01&limit=25&cursor=log_01JY6K6Y
Response
{
"data": [
{
"id": "log_01JY6K6Y8F7P4B2S1Q8Z9R0M3N",
"agentId": "researchbot-01",
"service": "risk-report-api",
"amount": "0.03",
"asset": "USDC",
"result": "approved",
"rule": "under_max_payment",
"createdAt": "2026-06-10T09:31:04Z"
}
],
"nextCursor": "log_01JY6JX82SX6C9QCK9BK9A7P8H"
}
Field Type Description
agentId string Optional filter by agent.
result approved | blocked Optional filter by decision.
limit number Page size, default 25, max 100.
cursor string Pagination cursor from previous response.