curl --request GET \
--url https://api.example.com/v1/projects/{project_identifier}/session_annotations{
"data": [
{
"id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"source": "API",
"user_id": "<string>",
"name": "<string>",
"annotator_kind": "LLM",
"session_id": "<string>",
"result": {
"label": "<string>",
"score": 123,
"explanation": "<string>"
},
"metadata": {},
"identifier": ""
}
],
"next_cursor": "<string>"
}Return session annotations for a project, filtered by session_ids, identifier, or both. At least one of session_ids or identifier must be supplied. When both are supplied, results are the AND-intersection of the two filters.
curl --request GET \
--url https://api.example.com/v1/projects/{project_identifier}/session_annotations{
"data": [
{
"id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"source": "API",
"user_id": "<string>",
"name": "<string>",
"annotator_kind": "LLM",
"session_id": "<string>",
"result": {
"label": "<string>",
"score": 123,
"explanation": "<string>"
},
"metadata": {},
"identifier": ""
}
],
"next_cursor": "<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.
The project identifier: either project ID or project name. If using a project name as the identifier, it cannot contain slash (/), question mark (?), or pound sign (#) characters.
Optional list of session ids to fetch annotations for. If omitted, identifier must be supplied.
Optional list of annotation identifiers to filter by. Each value must be non-empty. If omitted, session_ids must be supplied. When combined with session_ids, results are the AND-intersection of both filters.
1Optional list of annotation names to include. If provided, only annotations with these names will be returned. 'note' annotations are excluded by default unless explicitly included in this list.
Optional list of annotation names to exclude from results.
A cursor for pagination
The maximum number of annotations to return in a single request
x <= 10000Was this page helpful?