Get Started
- Introduction
- Self Hosting
- Cookbooks
LLM Observability
- Overview
- Concepts
- Quick Start
- Language APIs & SDKs
- Integrations
- User Events
- Monitoring & Alerts
- Code Examples
LLM Evaluation
- Overview
- Evaluation Tracking API
- Evaluation Wizard
- 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
Copy
curl --request GET \
--url https://app.langwatch.ai/api/annotations \
--header 'X-Auth-Token: <api-key>'
Copy
[
{
"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?
Copy
curl --request GET \
--url https://app.langwatch.ai/api/annotations \
--header 'X-Auth-Token: <api-key>'
Copy
[
{
"id": "<string>",
"projectId": "<string>",
"traceId": "<string>",
"comment": "<string>",
"isThumbsUp": true,
"userId": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"email": "<string>"
}
]
Assistant
Responses are generated using AI and may contain mistakes.