curl --request POST \
--url https://api.helicone.ai/v1/experiment/table/{experimentTableId}/row/insert/batch \
--header 'Content-Type: application/json' \
--header 'authorization: <api-key>' \
--data '{
"rows": [
{
"sourceRequest": "<string>",
"cells": [
{
"metadata": "<any>",
"value": "<string>",
"columnId": "<string>"
}
],
"datasetId": "<string>",
"inputs": {},
"inputRecordId": "<string>"
}
]
}'
{}
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 'Content-Type: application/json' \
--header 'authorization: <api-key>' \
--data '{
"rows": [
{
"sourceRequest": "<string>",
"cells": [
{
"metadata": "<any>",
"value": "<string>",
"columnId": "<string>"
}
],
"datasetId": "<string>",
"inputs": {},
"inputRecordId": "<string>"
}
]
}'
{}
eu.api.helicone.ai
instead of
api.helicone.ai
.Ok
The response is of type object
.
Was this page helpful?