Ingest an array of events (traces or steps) to store and process.
Your unique Avido API key
Your unique Avido Application ID
Request schema for ingesting events into the system.
Array of events to be ingested, which can be traces or steps.
A trace grouping related steps (e.g. a user-agent interaction or conversation).
[
{
"type": "trace",
"timestamp": "2025-01-01T12:00:00Z",
"referenceId": "123e4567-e89b-12d3-a456-426614174000",
"metadata": { "source": "chatbot" }
},
{
"type": "llm",
"event": "start",
"traceId": "123e4567-e89b-12d3-a456-426614174000",
"timestamp": "2025-01-01T12:01:00Z",
"modelId": "gpt-4o-2024-08-06",
"params": { "temperature": 1.2 },
"input": [
{
"role": "user",
"content": "Tell me a joke."
}
]
}
]Successfully ingested events.
Response schema for successful event ingestion.
Array of results for each ingested event.