curl --request POST \
--url https://api.helicone.ai/v1/experiment/dataset/query \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"promptVersionId": "<string>"
}
'{
"data": [
{
"id": "<string>",
"name": "<string>",
"created_at": "<string>",
"meta": {
"promptVersionId": "<string>",
"inputRecordsIds": [
"<string>"
]
}
}
],
"error": null
}Search and filter through experiment datasets
curl --request POST \
--url https://api.helicone.ai/v1/experiment/dataset/query \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"promptVersionId": "<string>"
}
'{
"data": [
{
"id": "<string>",
"name": "<string>",
"created_at": "<string>",
"meta": {
"promptVersionId": "<string>",
"inputRecordsIds": [
"<string>"
]
}
}
],
"error": null
}eu.api.helicone.ai instead of
api.helicone.ai.Bearer token authentication. Format: 'Bearer YOUR_API_KEY'
Ok
Was this page helpful?