Words API · JSON Structure

Words Search Results Meta Structure

Pagination and totals metadata for /words search.

Type: object Properties: 3
DictionariesLinguisticsEnglishThesaurusLexical DataPublic APIs

SearchResultsMeta is a JSON Structure definition published by Words API, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

currentPage limit total

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/words/refs/heads/main/json-structure/words-search-results-meta-structure.json",
  "name": "SearchResultsMeta",
  "description": "Pagination and totals metadata for /words search.",
  "type": "object",
  "properties": {
    "currentPage": {
      "type": "int32",
      "example": 1
    },
    "limit": {
      "type": "int32",
      "example": 100
    },
    "total": {
      "type": "int32",
      "example": 12345
    }
  }
}