Skip to main content
POST
/
v1
/
datasets-v2
Create dataset v2
curl --request POST \
  --url https://api.lunary.ai/v1/datasets-v2 \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "description": "<string>"
}'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "projectId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "ownerId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "ownerName": "<string>",
  "ownerEmail": "<string>",
  "name": "<string>",
  "description": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "itemCount": 123,
  "currentVersionId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "currentVersionNumber": 123,
  "currentVersionCreatedAt": "2023-11-07T05:31:56Z",
  "currentVersionCreatedBy": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "currentVersionRestoredFromVersionId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}

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
description
string | null

Response

201 - application/json

Created dataset

id
string<uuid>
projectId
string<uuid>
ownerId
string<uuid> | null
ownerName
string | null
ownerEmail
string | null
name
string
description
string | null
createdAt
string<date-time>
updatedAt
string<date-time>
itemCount
integer
currentVersionId
string<uuid> | null
currentVersionNumber
integer
currentVersionCreatedAt
string<date-time> | null
currentVersionCreatedBy
string<uuid> | null
currentVersionRestoredFromVersionId
string<uuid> | null