Skip to main content
GET
/
datasets
List Datasets
curl --request GET \
  --url https://api.woodwide.ai/datasets \
  --header 'Authorization: Bearer <token>'
{
  "datasets": [
    {
      "id": "a1b2c3d4-0000-0000-0000-000000000001",
      "name": "my_dataset",
      "description": null,
      "created_at": "2025-01-15T10:30:00Z",
      "updated_at": "2025-01-15T10:30:00Z",
      "current_version": {
        "version_number": 1,
        "status": "ready",
        "row_count": 1000,
        "column_count": 12
      }
    }
  ],
  "next_cursor": null
}

Documentation Index

Fetch the complete documentation index at: https://docs.woodwide.ai/llms.txt

Use this file to discover all available pages before exploring further.

This endpoint uses cursor-based pagination ordered newest-first. See Pagination for a full example.

Authorizations

Authorization
string
header
required

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

Query Parameters

q
string | null

Case-insensitive substring search on dataset name. Returns datasets whose name contains the query string.

limit
integer
default:50
Required range: 1 <= x <= 200
cursor
string | null

Pagination cursor

Response

Successful Response

Response for listing datasets.

Returns datasets in the current organization. Use the limit query parameter to control page size (default 50, max 200).

items
Dataset · object[]
required
next_cursor
string | null