GET
/
extract
curl --request GET \
  --url https://api.cloudglue.dev/v1/extract \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "data": [
    {
      "job_id": "<string>",
      "status": "pending",
      "url": "<string>",
      "created_at": 123,
      "extract_config": {
        "prompt": "<string>",
        "schema": {}
      },
      "data": {
        "entities": {},
        "segment_entities": [
          {
            "segment_id": "<string>",
            "start_time": 123,
            "end_time": 123,
            "entities": {}
          }
        ]
      },
      "error": "<string>"
    }
  ],
  "total": 123,
  "limit": 123,
  "offset": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
integer
default:50

Maximum number of extract jobs to return

Required range: x <= 100
offset
integer
default:0

Number of extract jobs to skip

status
enum<string>

Filter extract jobs by status

Available options:
pending,
processing,
completed,
failed,
not_applicable
created_before
string

Filter extract jobs created before a specific date (YYYY-MM-DD format), in UTC timezone

created_after
string

Filter extract jobs created after a specific date (YYYY-MM-DD format), in UTC timezone

url
string

Filter extract jobs by the input URL used for extraction

Response

200
application/json

A list of extract jobs

The response is of type object.