GET
/
v1
/
datasets
/
columns
curl --request GET \
  --url https://api.getmaxim.ai/v1/datasets/columns \
  --header 'x-maxim-api-key: <api-key>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "type": "<string>",
    "meta": {
      "columnDataType": "<string>",
      "delimiter": "<string>"
    },
    "columnType": "<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 to to fetch the columns of

limit
number | null
default:10

Maximum number of records to return (max: 100)

Required range: x <= 100

Response

200
application/json
Dataset columns retrieved successfully

The response is of type object[].