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}
Copy
curl --request GET \
--url https://staging.atlantic.api.herodotus.cloud/atlantic-query-jobs/{atlanticQueryId}
Copy
{
"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
The response is of type object
.
Copy
curl --request GET \
--url https://staging.atlantic.api.herodotus.cloud/atlantic-query-jobs/{atlanticQueryId}
Copy
{
"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>"
]
}
Assistant
Responses are generated using AI and may contain mistakes.