Annotations

Image annotations - Get caption

Deprecation notice

This endpoint is deprecated. We recommend using alternative endpoints to ensure continued support and compatibility.

This endpoint receives an image in base64 format and returns a description of the image in the following format:

  • Long description of the image: ['long_description']
  • Short description of the image: ['short_description']
  • Objects present in the image: ['objects_present']
  • List of main colors visible in the image: ['colors']
  • Mood of the image: ['mood']

The response is in a JSON dictionary format as shown below:

{
"data": {
"long_description": "...",
"short_description": "...",
"objects_present": "...",
"colors": "...",
"mood": "..."
}
}
POST
/api/getCaption
AuthorizationBearer <token>

In: header

base64string
question?string

Response Body

Examples

curl -X POST "https://api.piktid.com/api/getCaption" \
  -H "Content-Type: application/json" \
  -d '{
    "base64": "string"
  }'
Empty
Empty
Empty
Empty
Empty