POST
/
datasets
curl --request POST \
  --url https://api.openpipe.ai/api/v1/datasets \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>"
}'
{
  "object": "dataset",
  "id": "<string>",
  "name": "<string>",
  "created": "<string>",
  "updated": "<string>",
  "dataset_entry_count": 123,
  "fine_tune_count": 123
}

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

Response

200
application/json
Successful response
object
enum<string>
required
Available options:
dataset
id
string
required
name
string
required
created
string
required
updated
string
required
dataset_entry_count
number
required
fine_tune_count
number
required