GET
/
api
/
v1
/
runs
/
curl --request GET \
  --url https://api.nekt.ai/api/v1/runs/ \
  --header 'x-api-key: <api-key>'
{
  "count": 123,
  "next": "http://api.example.org/accounts/?page=4",
  "previous": "http://api.example.org/accounts/?page=2",
  "results": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "started_at": "2023-11-07T05:31:56Z",
      "ended_at": "2023-11-07T05:31:56Z",
      "duration_seconds": 123,
      "status": "queued",
      "trigger": {
        "type": "<string>",
        "cron_expression": "<string>",
        "cron_timezone": "<string>",
        "event_rule": "<string>"
      },
      "full_sync": true,
      "extra_config": "<any>",
      "triggered_by": 123,
      "triggered_by_token": "<string>",
      "source": "<string>",
      "destination": "<string>",
      "transformation": "<string>"
    }
  ]
}

Authorizations

x-api-key
string
header
required

API Key authentication. Format: 'x-api-key: api_key'

Query Parameters

date
string
page
integer

A page number within the paginated result set.

page_size
integer

Number of results to return per page.

pipeline_slug
string[]

Multiple values may be separated by commas.

pipeline_trigger_type
string[]

Multiple values may be separated by commas.

pipeline_type
string[]

Multiple values may be separated by commas.

A search term.

status
string[]

Multiple values may be separated by commas.

Response

200 - application/json

The response is of type object.