GET
/
v2
/
projects
/
{project_id}
/
prompt_datasets
curl --request GET \
  --url https://api.galileo.ai/v2/projects/{project_id}/prompt_datasets \
  --header 'Galileo-API-Key: <api-key>'
{
  "starting_token": 0,
  "limit": 100,
  "paginated": false,
  "next_starting_token": 123,
  "datasets": [
    {
      "id": "<string>",
      "dataset_id": "<string>",
      "file_name": "<string>",
      "message": "<string>",
      "num_rows": 123,
      "rows": 123
    }
  ]
}

Authorizations

Galileo-API-Key
string
header
required

Path Parameters

project_id
string
required

Query Parameters

starting_token
integer
default:0
limit
integer
default:100

Response

200
application/json

Successful Response

The response is of type object.