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

Project ID that will own the dataset. Must match a project you created.

name
string
required

Human-readable name shown in the dashboard once the dataset is created.

Minimum length: 1
file
file
required

Required JSONL upload. Each line should be a JSON object containing a "messages" array (system/user/assistant) used to seed the dataset.

Response

Dataset created successfully

dataset_id
string<uuid>
required