cURL
curl --request GET \ --url https://api.openpipe.ai/api/v1/datasets \ --header 'Authorization: Bearer <token>'
{ "object": "list", "data": [ { "object": "dataset", "id": "<string>", "name": "<string>", "created": "<string>", "updated": "<string>", "dataset_entry_count": 123, "fine_tune_count": 123 } ] }
List datasets for a project.
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