Authorizations
Bearer token authentication. Format: 'Bearer YOUR_API_KEY'
curl --request POST \
--url https://api.helicone.ai/v1/experiment/table/{experimentTableId}/query \
--header 'Authorization: <api-key>'{
"data": {
"id": "<string>",
"name": "<string>",
"experimentId": "<string>",
"columns": [
{
"id": "<string>",
"columnName": "<string>",
"columnType": "<string>",
"hypothesisId": "<string>",
"cells": [
{
"metadata": {},
"value": "<string>",
"requestId": "<string>",
"rowIndex": 123,
"id": "<string>"
}
],
"metadata": {}
}
],
"metadata": {}
}
}Search and filter experiment table data
curl --request POST \
--url https://api.helicone.ai/v1/experiment/table/{experimentTableId}/query \
--header 'Authorization: <api-key>'{
"data": {
"id": "<string>",
"name": "<string>",
"experimentId": "<string>",
"columns": [
{
"id": "<string>",
"columnName": "<string>",
"columnType": "<string>",
"hypothesisId": "<string>",
"cells": [
{
"metadata": {},
"value": "<string>",
"requestId": "<string>",
"rowIndex": 123,
"id": "<string>"
}
],
"metadata": {}
}
],
"metadata": {}
}
}eu.api.helicone.ai instead of
api.helicone.ai.Bearer token authentication. Format: 'Bearer YOUR_API_KEY'
Was this page helpful?