GET
/
datasets
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
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json
Successful response
object
enum<string>
required
Available options:
list
data
object[]
required