GET
/
v2
/
annotation
curl --request GET \
  --url https://api.scale.com/v2/annotation \
  --header 'Authorization: Bearer <token>'
{
  "id": "an_abc123",
  "type": "integer",
  "key": "formatting",
  "value": 3,
  "title": "Response Formatting",
  "description": "Does the response contain issues with formatting?",
  "possible_values": [
    1,
    2,
    3
  ],
  "labels": [
    "Major Issues",
    "Minor Issues",
    "No Issues"
  ]
}

Authorizations

Authorization
string
header
required

Your API Key is the Bearer token. See the Authentication section to learn how to access your key.

Query Parameters

annotation_id
string
required

The unique identifier of the annotation.

Example:

"overall_quality"

Response

200
application/json

Completed annotation.

The response is of type object.