GET
/
v1
/
reports
curl --request GET \
  --url https://api.extruct.ai/v1/reports \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "status": "created",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "column_configs": [
      {
        "kind": "input",
        "name": "<string>",
        "key": "<string>"
      }
    ],
    "inputs": {},
    "results": {}
  }
]

Authorizations

Authorization
string
header
required

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

Query Parameters

offset
integer | null
limit
integer | null

Response

200
application/json
Successful Response
id
string
required
status
enum<string>
required
Available options:
created,
in_progress,
done,
failed
created_at
string
required
updated_at
string
required
column_configs
object[]
required
inputs
object
required
name
string | null
results
object | null