curl --request POST \
--url https://api.helicone.ai/v1/experiment/tables/query \
--header 'authorization: <api-key>'
{
"data": [
{
"id": "<string>",
"name": "<string>",
"experimentId": "<string>",
"createdAt": "<string>",
"metadata": "<any>",
"columns": [
{
"columnType": "<string>",
"columnName": "<string>",
"id": "<string>"
}
]
}
]
}
Search and filter through experiment tables
curl --request POST \
--url https://api.helicone.ai/v1/experiment/tables/query \
--header 'authorization: <api-key>'
{
"data": [
{
"id": "<string>",
"name": "<string>",
"experimentId": "<string>",
"createdAt": "<string>",
"metadata": "<any>",
"columns": [
{
"columnType": "<string>",
"columnName": "<string>",
"id": "<string>"
}
]
}
]
}
eu.api.helicone.ai
instead of
api.helicone.ai
.Ok
The response is of type object
.
Was this page helpful?