GET
/
public
/
v2
/
datasets
/
{datasetName}
Get Dataset By Name
curl --request GET \
  --url https://api/public/v2/datasets/{datasetName}
{
  "id": "<string>",
  "name": "<string>",
  "description": "<string>",
  "metadata": {},
  "projectId": "<string>",
  "createdAt": {},
  "updatedAt": {}
}
Request Exemple
{
  "datasetName": <string>
}

Response Description

Below you will see the description of the Get Dataset By Id response

Response Description

Below is the description of the Get Dataset By Id response:
id
string
required
The unique identifier for the entity.
name
string
required
The name of the entity.
description
string
required
A detailed description of the entity.
metadata
object
Optional metadata associated with the entity.
projectId
string
required
The unique identifier for the project associated with the entity.
createdAt
date-time
required
The timestamp indicating when the entity was created (ISO 8601 format).
updatedAt
date-time
required
The timestamp indicating when the entity was last updated (ISO 8601 format).