Skip to main content
GET
/
datasets
/
{datasetId}
/
items
List items for a dataset
curl --request GET \
  --url https://app.azalt.co/api/v1/datasets/{datasetId}/items \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "items": [
    {
      "id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "link": "<string>",
      "year": 123,
      "tags": [
        "<string>"
      ],
      "data": "<unknown>",
      "metadata": "<unknown>",
      "inputUnitId": "<string>"
    }
  ],
  "organizationId": "<string>",
  "settings": {
    "excludeFromKpis": true
  },
  "pagination": {
    "total": 123,
    "limit": 123,
    "offset": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.azalt.co/llms.txt

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

Authorizations

Authorization
string
header
required

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

Path Parameters

datasetId
string
required

Query Parameters

limit
number
default:50
Required range: 1 <= x <= 100
offset
number
default:0
Required range: x >= 0
groupByName
boolean
default:false
year
number

Response

Successful response

id
string
required
name
string
required
items
object[]
required
organizationId
string | null
settings
object
pagination
object