Skip to main content
POST
/
api
/
v1
/
public
/
datasets
/
create-from-jsonl
cURL
curl --request POST \
  --url http://studio.premai.io/api/v1/public/datasets/create-from-jsonl \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form project_id=3c90c3cc-0d44-4b50-8888-8dd25736052a \
  --form 'name=<string>' \
  --form file=@example-file
{
  "dataset_id": "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

multipart/form-data
project_id
string<uuid>
required
name
string
required
Minimum length: 1
file
file

JSONL file

Response

Dataset created successfully

dataset_id
string<uuid>
required