Skip to main content
POST
/
api
/
collector
/
batch
Batch Trace Ingestion
curl --request POST \
  --url https://evalgate.com/api/collector/batch \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "traces": [
    {}
  ]
}
'
{
  "ingested": 123,
  "failed": 123,
  "errors": [
    {}
  ]
}

Documentation Index

Fetch the complete documentation index at: https://evalgate.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
traces
object[]
required
Maximum array length: 100

Response

Traces ingested

ingested
integer
failed
integer
errors
object[]