curl --request GET \
--url https://api.axiom.xyz/v1/proofs \
--header 'Axiom-API-Key: <api-key>'{
"items": [
{
"id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"state": "Queued",
"proof_type": "app",
"program_uuid": "<string>",
"launched_at": "2023-11-07T05:31:56Z",
"terminated_at": "2023-11-07T05:31:56Z",
"created_by": "<string>",
"cells_used": 123,
"cost": 123,
"machine_type": "<string>",
"error_message": "",
"proof_size": 123,
"num_instructions": 123
}
],
"pagination": {
"total": 123,
"page": 123,
"page_size": 123,
"pages": 123
}
}List all proofs for a specific program with pagination support.
curl --request GET \
--url https://api.axiom.xyz/v1/proofs \
--header 'Axiom-API-Key: <api-key>'{
"items": [
{
"id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"state": "Queued",
"proof_type": "app",
"program_uuid": "<string>",
"launched_at": "2023-11-07T05:31:56Z",
"terminated_at": "2023-11-07T05:31:56Z",
"created_by": "<string>",
"cells_used": 123,
"cost": 123,
"machine_type": "<string>",
"error_message": "",
"proof_size": 123,
"num_instructions": 123
}
],
"pagination": {
"total": 123,
"page": 123,
"page_size": 123,
"pages": 123
}
}Proofs retrieved successfully
Show child attributes
Queued, Executing, Executed, AppProving, AppProvingDone, PostProcessing, Failed, Succeeded app, stark, evm Error message if the proof failed
""
Proof size in bytes
Number of instructions executed
Was this page helpful?