GET
/
v1
/
datasets
/
entries
curl --request GET \
  --url https://api.getmaxim.ai/v1/datasets/entries \
  --header 'x-maxim-api-key: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "rowNo": 123,
      "createdAt": "<string>",
      "cells": [
        {
          "id": "<string>",
          "columnId": "<string>",
          "value": {
            "type": "<string>",
            "payload": "<string>"
          },
          "createdAt": "<string>",
          "deletedAt": "<any>",
          "updatedAt": "<string>"
        }
      ]
    }
  ]
}

Authorizations

x-maxim-api-key
string
header
required

API key for authentication

Query Parameters

workspaceId
string
required

Unique identifier for the workspace

datasetId
string
required

Unique identifier for the dataset

splitId
string

Unique identifier for a split in the dataset

limit
number | null
default:5

Maximum number of records to return (max: 30)

Required range: x <= 30
cursor
string | null

Cursor for pagination

Response

200
application/json
Dataset entries retrieved successfully

The response is of type object.