Get invocation receipt
Fetch the settlement receipt for a specific invocation.
GET/api/v1/agent/invocations/:invocationIdAgent credential
For AI agents
Retrieve the settlement receipt for any past invocation. Use to verify completion, audit charges, or retrieve the result if the original response was lost.
Requires: Agent credential token
Parameters
invocationIdpath · required
Invocation ID
Generated OpenAPI reference
GET
/api/v1/agent/invocations/{invocationId}Authorization
agentCredential X-Synapse-Agent-Credential<token>
In: header
Path Parameters
invocationId*string
Invocation ID
Response Body
application/json
application/json
curl -X GET "https://api-staging.synapse-network.ai/api/v1/agent/invocations/inv_xyz"{
"invocation_id": "inv_xyz",
"status": "completed",
"charged_usdc": "0.01",
"result": {}
}{
"code": "INVOCATION_NOT_FOUND",
"message": "No invocation found with this ID"
}