curl --request POST \
--url https://api.example.com/v1/trace_notes \
--header 'Content-Type: application/json' \
--data '
{
"data": {
"trace_id": "<string>",
"note": "<string>"
}
}
'{
"data": {
"id": "<string>"
}
}Add a note annotation to a trace. Each call appends a new note with an auto-generated UUIDv4 identifier, so multiple notes accumulate on the same trace. Structured annotations, by contrast, are keyed by (name, trace_id, identifier) — re-writing the same key overwrites the existing annotation, so to keep multiple structured annotations with the same name on a trace you must supply distinct identifiers.
curl --request POST \
--url https://api.example.com/v1/trace_notes \
--header 'Content-Type: application/json' \
--data '
{
"data": {
"trace_id": "<string>",
"note": "<string>"
}
}
'{
"data": {
"id": "<string>"
}
}Documentation Index
Fetch the complete documentation index at: https://arizeai-433a7140.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Was this page helpful?