curl --request GET \
--url https://api.example.com/traces/{trace_id}/issue_occurrences \
--header 'Authorization: Bearer <token>'{
"issue_occurrences": [
{
"id": "<string>",
"trace_id": "<string>",
"title": "<string>",
"rationale": "<string>",
"source_span_ids": [
"<string>"
],
"evidence_span_ids": [
"<string>"
],
"citations": [
{}
],
"issue_id": "<string>",
"category": "<string>",
"created_at": "<string>",
"issue": {
"id": "<string>",
"name": "<string>",
"priority": "<string>",
"status": "<string>",
"category": "<string>",
"agent_name": "<string>"
}
}
]
}Returns issue occurrence evidence linked to a ready trace.
curl --request GET \
--url https://api.example.com/traces/{trace_id}/issue_occurrences \
--header 'Authorization: Bearer <token>'{
"issue_occurrences": [
{
"id": "<string>",
"trace_id": "<string>",
"title": "<string>",
"rationale": "<string>",
"source_span_ids": [
"<string>"
],
"evidence_span_ids": [
"<string>"
],
"citations": [
{}
],
"issue_id": "<string>",
"category": "<string>",
"created_at": "<string>",
"issue": {
"id": "<string>",
"name": "<string>",
"priority": "<string>",
"status": "<string>",
"category": "<string>",
"agent_name": "<string>"
}
}
]
}Documentation Index
Fetch the complete documentation index at: https://docs.uselemma.ai/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Trace identifier.
Successful Response
Show child attributes