curl --request POST \
--url https://api.helicone.ai/v1/helicone-dataset/{datasetId}/query \
--header 'Content-Type: application/json' \
--header 'authorization: <api-key>' \
--data '{
"limit": 123,
"offset": 123
}'
{
"data": [
{
"id": "<string>",
"origin_request_id": "<string>",
"dataset_id": "<string>",
"created_at": "<string>",
"signed_url": {
"data": "<string>"
}
}
]
}
Search and filter through a Helicone dataset
curl --request POST \
--url https://api.helicone.ai/v1/helicone-dataset/{datasetId}/query \
--header 'Content-Type: application/json' \
--header 'authorization: <api-key>' \
--data '{
"limit": 123,
"offset": 123
}'
{
"data": [
{
"id": "<string>",
"origin_request_id": "<string>",
"dataset_id": "<string>",
"created_at": "<string>",
"signed_url": {
"data": "<string>"
}
}
]
}
eu.api.helicone.ai
instead of
api.helicone.ai
.Ok
The response is of type object
.
Was this page helpful?