v1

latestOpenAPI 3.1.02026-07-26125062.1 KB
Extract

/extract

[BETA] The GET /extract method, without extract task identifier, lists all created extract tasks for the authenticated organization, with pagination.

get/v1/extract

Query parameters

pageinteger
pageSizeinteger
sortBy'createdAt' | 'updatedAt'
sortDirection'asc' | 'desc'

Response

Paginated list of extract tasks.

Example response

{
  "data": [
    {
      "createdAt": "2026-01-01T00:00:00.000Z",
      "id": "01234-abcd-56789",
      "status": "completed",
      "updatedAt": "2026-01-01T00:00:00.000Z",
      "input": {
        "url": "https://example.com/team"
      }
    }
  ]
}