Words API · JSON Structure

Words Rhymes Response Structure

Response from GET /words/{word}/rhymes.

Type: object Properties: 2
DictionariesLinguisticsEnglishThesaurusLexical DataPublic APIs

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

Properties

word rhymes

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-rhymes-response-structure.json",
  "name": "RhymesResponse",
  "description": "Response from GET /words/{word}/rhymes.",
  "type": "object",
  "properties": {
    "word": {
      "type": "string",
      "example": "apple"
    },
    "rhymes": {
      "type": "object",
      "description": "Rhyme arrays grouped by pronunciation variant.",
      "additionalProperties": {
        "type": "array",
        "items": {
          "type": "string"
        }
      },
      "example": {
        "all": [
          "chapel",
          "dapple",
          "grapple"
        ]
      }
    }
  }
}