GET
/
api
/
annotations
/
{id}
cURL
curl --request GET \
  --url https://app.langwatch.ai/api/annotations/{id} \
  --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

X-Auth-Token
string
header
required

Path Parameters

id
string
required

ID of annotation to fetch

Response

Annotation response

id
string

The ID of the annotation

projectId
string

The ID of the project

traceId
string

The ID of the trace

comment
string

The comment of the annotation

isThumbsUp
boolean

The thumbs up status of the annotation

userId
string

The ID of the user

createdAt
string

The created at of the annotation

updatedAt
string

The updated at of the annotation

email
string

The email of the user