POST/GET requests

Run your queries asynchronously

Introduction

The Explorer API allows you to

Create a new asynchronous query run

Request fields

Example

curl -X 'POST' \
  'https://api.allium.so/api/v1/explorer/queries/{query_id}/run-async' \
  -H 'accept: application/json' \
  -H 'Content-Type: application/json' \
  -H 'X-API-KEY: <YOUR API KEY>' \
  -d '{
  "parameters": {},
  "run_config": {
    "limit": 1000,
  }
}'

Retrieve the latest query run information for a query

Retrieve the status of a query run

Possible query run statuses

Retrieve the results of a query run

The query run result will have the following fields:

Cancel a query run

Last updated