Annotations
Get annotations
Get Started
- Introduction
- Self Hosting
- Cookbooks
LLM Observability
- Overview
- Concepts
- Language APIs & SDKs
- User Events
- Monitoring & Alerts
- Code Examples
LLM Evaluation
- Offline Evaluation
- Real-Time Evaluation
- List of Evaluators
- Datasets
- Annotations
LLM Development
- Prompt Optimization Studio
- DSPy Visualization
- LangWatch MCP
- Prompt Versioning
API Endpoints
Annotations
Get annotations
Returns all annotations for project
GET
/
api
/
annotations
curl --request GET \
--url https://app.langwatch.ai/api/annotations \
--header 'X-Auth-Token: <api-key>'
[
{
"id": "<string>",
"projectId": "<string>",
"traceId": "<string>",
"comment": "<string>",
"isThumbsUp": true,
"userId": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"email": "<string>"
}
]
Authorizations
Response
200
application/json
Annotation response
The response is of type object[]
.
Was this page helpful?
curl --request GET \
--url https://app.langwatch.ai/api/annotations \
--header 'X-Auth-Token: <api-key>'
[
{
"id": "<string>",
"projectId": "<string>",
"traceId": "<string>",
"comment": "<string>",
"isThumbsUp": true,
"userId": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"email": "<string>"
}
]