GET
/
v1
/
datasets
curl --request GET \
  --url https://api.getmaxim.ai/v1/datasets \
  --header 'x-maxim-api-key: <api-key>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "config": {},
    "description": "<string>",
    "accountId": "<string>",
    "workspaceId": "<string>",
    "folderId": "<string>",
    "createdAt": "<string>",
    "updatedAt": "<string>",
    "deletedAt": "<string>",
    "columns": [
      {
        "id": "<string>",
        "name": "<string>",
        "type": "<string>",
        "meta": {
          "columnDataType": "<string>",
          "delimiter": "<string>"
        },
        "columnType": "<string>"
      }
    ],
    "entriesCount": 123
  }
]

Authorizations

x-maxim-api-key
string
header
required

API key for authentication

Query Parameters

id
string

Unique identifier for the dataset

listSplits
boolean | null

Whether to list splits within a dataset

workspaceId
string
required

Unique identifier for the workspace

folderId
string

Unique identifier for the folder

limit
number | null
default:20

Maximum number of records to return (max: 100)

Required range: x <= 100
cursor
string | null

Cursor for pagination

Response

200
application/json
Datasets retrieved successfully

The response is of type object[].