Tenor · Schema

SearchResults

Response object from the Tenor search and featured endpoints.

GIFsAnimated ImagesSearchMediaGoogle

Properties

Name Type Description
next string A position identifier to use with the next API query via the pos field. Empty string if no further results.
results array
View JSON Schema on GitHub

JSON Schema

SearchResults.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/tenor/main/json-schema/SearchResults.json",
  "title": "SearchResults",
  "description": "Response object from the Tenor search and featured endpoints.",
  "type": "object",
  "properties": {
    "next": {
      "type": "string",
      "description": "A position identifier to use with the next API query via the pos field. Empty string if no further results."
    },
    "results": {
      "type": "array",
      "items": {
        "$ref": "ResponseObject.json"
      }
    }
  }
}