Query Execution
Get Query Execution
Data API
Application
Query
Query Execution
Get Query Execution
GET
/
api
/
v1
/
explorer
/
queries
/
{query_slug}
/
execution
/
{id}
curl --request GET \
--url https://api.nekt.ai/api/v1/explorer/queries/{query_slug}/execution/{id}/ \
--header 'x-api-key: <api-key>'
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"query_slug": "<string>",
"query_version": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"page_number": 123,
"page_offset": 123,
"status": "queued",
"created_by": {
"id": 123,
"first_name": "<string>",
"last_name": "<string>",
"email": "jsmith@example.com",
"picture": "<string>"
},
"created_by_token": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"token": "<string>",
"is_active": true,
"description": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"last_used_at": "2023-11-07T05:31:56Z"
},
"results_s3_key": "<string>",
"results_expire_at": "2023-11-07T05:31:56Z",
"error_traceback": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
Authorizations
API Key authentication. Format: 'x-api-key: api_key'
Path Parameters
A UUID string identifying this Explorer query.
Response
200 - application/json
The response is of type object
.
curl --request GET \
--url https://api.nekt.ai/api/v1/explorer/queries/{query_slug}/execution/{id}/ \
--header 'x-api-key: <api-key>'
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"query_slug": "<string>",
"query_version": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"page_number": 123,
"page_offset": 123,
"status": "queued",
"created_by": {
"id": 123,
"first_name": "<string>",
"last_name": "<string>",
"email": "jsmith@example.com",
"picture": "<string>"
},
"created_by_token": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"token": "<string>",
"is_active": true,
"description": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"last_used_at": "2023-11-07T05:31:56Z"
},
"results_s3_key": "<string>",
"results_expire_at": "2023-11-07T05:31:56Z",
"error_traceback": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}