ℹ️ These docs are for the free version of Galileo. Documentation for current customers can be found here.
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
}
]
}
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
}
]
}
Successful Response
The response is of type object
.
Was this page helpful?