For the complete documentation index, see llms.txt. This page is also available as Markdown.

getMetadata

API Version: 0.3.0

GET /dataset/{dataset}/{version}/metadata

Get metadata record for a dataset version.

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Body

Name
Type
Description

dataset

string

dataset

version

number

version

metadata

string

include_dataset_metadata

Response

{
  "data": {
    "content_date_range": {
      "start_date": "2000-01-01",
      "end_date": "2021-04-06"
    },
    "content_date_description": "2000 - present"
  },
  "status": "success"
}
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}

Was this helpful?