curl --request POST \
--url https://api.helicone.ai/v1/helicone-dataset/query \
--header 'Content-Type: application/json' \
--header 'authorization: <api-key>' \
--data '{
"datasetIds": [
"<string>"
]
}'
{
"data": [
{
"created_at": "<string>",
"dataset_type": "<string>",
"id": "<string>",
"meta": "<string>",
"name": "<string>",
"organization": "<string>",
"requests_count": 123
}
]
}
Search and filter through all Helicone datasets
curl --request POST \
--url https://api.helicone.ai/v1/helicone-dataset/query \
--header 'Content-Type: application/json' \
--header 'authorization: <api-key>' \
--data '{
"datasetIds": [
"<string>"
]
}'
{
"data": [
{
"created_at": "<string>",
"dataset_type": "<string>",
"id": "<string>",
"meta": "<string>",
"name": "<string>",
"organization": "<string>",
"requests_count": 123
}
]
}
eu.api.helicone.ai
instead of
api.helicone.ai
.Ok
The response is of type object
.
Was this page helpful?