GET
/
api
/
v1
/
logs
{
  "logs": [
    {
      "id": "<string>",
      "source": "<string>",
      "status": "<string>",
      "message": "<string>",
      "createdAt": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {}
}

Authorizations

Authorization
string
header
required

Bearer token authentication supports:

  • Personal API tokens (PATs)
  • OAuth2 access tokens
  • JWT tokens

Example: Authorization: Bearer your_token_here

Query Parameters

page
integer
default:1
Required range: x >= 1
limit
integer
default:20
Required range: 1 <= x <= 100
source
string

Filter by source

status
enum<string>

Filter by status

Available options:
pending,
processing,
completed,
failed

Response

200 - application/json

Paginated ingestion logs

The response is of type object.