cURL
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 }
Create a new dataset.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful response
The response is of type object.
object