curl --request POST \
--url https://api.helicone.ai/v1/experiment/table/new \
--header 'Content-Type: application/json' \
--header 'authorization: <api-key>' \
--data '{
"datasetId": "<string>",
"experimentMetadata": {},
"promptVersionId": "<string>",
"newHeliconeTemplate": "<string>",
"isMajorVersion": true,
"promptSubversionMetadata": {},
"experimentTableMetadata": {}
}'
{
"data": {
"experimentId": "<string>",
"tableId": "<string>"
}
}
Create a new table for storing experiment data
curl --request POST \
--url https://api.helicone.ai/v1/experiment/table/new \
--header 'Content-Type: application/json' \
--header 'authorization: <api-key>' \
--data '{
"datasetId": "<string>",
"experimentMetadata": {},
"promptVersionId": "<string>",
"newHeliconeTemplate": "<string>",
"isMajorVersion": true,
"promptSubversionMetadata": {},
"experimentTableMetadata": {}
}'
{
"data": {
"experimentId": "<string>",
"tableId": "<string>"
}
}
eu.api.helicone.ai
instead of
api.helicone.ai
.Ok
The response is of type object
.
Was this page helpful?