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>"
}
]
Returns all annotations for project
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>"
}
]
Annotation response
The response is of type object[]
.
Was this page helpful?