curl --request POST \
--url https://api.helicone.ai/v1/experiment/table/{experimentTableId}/row/insert/batch \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"rows": [
{
"cells": [
{
"value": "<string>",
"columnId": "<string>",
"metadata": "<unknown>"
}
],
"datasetId": "<string>",
"inputs": {},
"inputRecordId": "<string>",
"sourceRequest": "<string>"
}
]
}
'{
"data": null,
"error": null
}Insert multiple rows into an experiment table at once
curl --request POST \
--url https://api.helicone.ai/v1/experiment/table/{experimentTableId}/row/insert/batch \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"rows": [
{
"cells": [
{
"value": "<string>",
"columnId": "<string>",
"metadata": "<unknown>"
}
],
"datasetId": "<string>",
"inputs": {},
"inputRecordId": "<string>",
"sourceRequest": "<string>"
}
]
}
'{
"data": null,
"error": null
}eu.api.helicone.ai instead of
api.helicone.ai.Bearer token authentication. Format: 'Bearer YOUR_API_KEY'
Show child attributes
Was this page helpful?