GET
/
documents
/
v1
/
datasets
curl --request GET \
  --url https://api.tensorlake.ai/documents/v1/datasets \
  --header 'Authorization: Bearer <token>'
{
  "hasMore": true,
  "items": [
    {
      "created_at": "<string>",
      "description": "<string>",
      "id": "<string>",
      "job_count": 123,
      "name": "<string>",
      "status": "idle"
    }
  ],
  "nextCursor": "<string>",
  "prevCursor": "<string>"
}

List all the datasets in your organization.

Authorizations

Authorization
string
header
required

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

Query Parameters

cursor
string

Cursor to paginate through the list of jobs

limit
integer

Limit the number of jobs to return

Required range: x >= 0
direction
enum<string>

Direction to paginate through the list of jobs

Available options:
next,
prev
status
enum<string>

Filter datasets by status

Available options:
idle,
processing

Response

200
application/json
List datasets
hasMore
boolean
required
items
object[]
required
nextCursor
string | null
prevCursor
string | null