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