v1

latestOpenAPI 3.0.02026-07-131091452.6 MB
images

Get keywords from text

This endpoint returns up to 10 important keywords from a block of plain text.

post/v2/images/search/suggestions

Request body

textstring required

Plain text to extract keywords from

Example request

{
  "text": "Planting flowers is a great way to make springtime more beautiful."
}

Response

OK

keywordsstring[]

The top keywords from the submitted text

Example response

{
  "keywords": [
    "planting",
    "flowers",
    "springtime",
    "beautiful"
  ]
}