Atlantic Prover Suite
Handy Links
Endpoints
Get query jobs
Provide the Atlantic query id to get the jobs for a given Atlantic query.
GET
/
atlantic-query-jobs
/
{atlanticQueryId}
curl --request GET \
--url https://staging.atlantic.api.herodotus.cloud/atlantic-query-jobs/{atlanticQueryId}
{
"jobs": [
{
"id": "<string>",
"atlanticQueryId": "<string>",
"status": "IN_PROGRESS",
"jobName": "TRACE_GENERATION",
"createdAt": "2023-11-07T05:31:56Z",
"completedAt": "2023-11-07T05:31:56Z",
"context": "<any>"
}
],
"steps": [
"<string>"
]
}
Path Parameters
Response
200
application/json
Default Response
Available options:
IN_PROGRESS
, COMPLETED
, FAILED
Available options:
TRACE_GENERATION
, PROOF_GENERATION
, PROOF_VERIFICATION
, FACT_HASH_GENERATION
, FACT_HASH_REGISTRATION
, PROOF_GENERATION_AND_VERIFICATION
curl --request GET \
--url https://staging.atlantic.api.herodotus.cloud/atlantic-query-jobs/{atlanticQueryId}
{
"jobs": [
{
"id": "<string>",
"atlanticQueryId": "<string>",
"status": "IN_PROGRESS",
"jobName": "TRACE_GENERATION",
"createdAt": "2023-11-07T05:31:56Z",
"completedAt": "2023-11-07T05:31:56Z",
"context": "<any>"
}
],
"steps": [
"<string>"
]
}