get_proof_request_status
Takes a request_id returned by
checkpoint_proof
.Returns the status string (e.g. Created, InProgress, Succeeded, or Failed).
This endpoint lets you monitor the lifecycle of a proof job.
Body
all ofOptional
Responses
200
JSON-RPC success (status) or error
application/json
400
Invalid request payload or request_id format
application/json
500
Internal indexer error
application/json
post
POST /proof HTTP/1.1
Host: devnet.data-anchor.termina.technology
Content-Type: application/json
{
"id": "92",
"jsonrpc": "2.0",
"method": "get_proof_request_status",
"params": {
"request_id": "6f6f3c3a-b2a1-4b6a-9e24-9b2f0c9f2b5d"
}
}
{
"jsonrpc": "2.0",
"id": "92",
"result": "Created"
}
Last updated