Skip to main content
POST
/
dataset-items
Create dataset item
curl --request POST \
  --url https://app.azalt.co/api/v1/dataset-items \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "datasetId": "<string>",
  "data": {},
  "year": 123,
  "description": "<string>",
  "link": "<string>",
  "metadata": {},
  "tags": [
    "<string>"
  ],
  "inputUnitId": "<string>"
}
'
{
  "id": "<string>",
  "name": "<string>",
  "description": "<string>",
  "link": "<string>",
  "year": 123,
  "tags": [
    "<string>"
  ],
  "data": "<unknown>",
  "metadata": "<unknown>",
  "inputUnitId": "<string>"
}

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.

Body

application/json
name
string
required
datasetId
string
required
data
object
required
year
number
required
description
string
metadata
object
tags
string[]
inputUnitId
string | null
Minimum string length: 1

Response

Successful response

id
string
required
name
string
required
description
string | null
required
year
number
required
tags
string[] | null
required
data
any
metadata
any
inputUnitId
string | null