GET
/
words
/
{id}
curl --request GET \
  --url https://igboapi.com/api/v2/words/{id} \
  --header 'X-API-Key: <api-key>'
{
  "id": "<string>",
  "word": "<string>",
  "wordClass": "<string>",
  "pronunciation": "<string>",
  "definitions": [
    "<string>"
  ],
  "attributes": {
    "isStandardIgbo": true,
    "isAccented": true,
    "isSlang": true,
    "isConstructedTerm": true,
    "isBorrowedTerm": true,
    "isStem": true,
    "isCommon": true
  },
  "relatedTerms": "<string>",
  "nsibidi": "<string>",
  "dialects": [
    {
      "word": "<string>",
      "dialects": [
        "<string>"
      ],
      "pronunciation": "<string>",
      "variations": [
        "<string>"
      ]
    }
  ],
  "variations": [
    "<string>"
  ],
  "examples": [
    {
      "id": "<string>",
      "igbo": "<string>",
      "english": "<string>",
      "pronunciation": "<string>",
      "meaning": "<string>",
      "style": {},
      "associatedWords": [
        "<string>"
      ],
      "nsibidi": "<string>"
    }
  ]
}

Authorizations

X-API-Key
string
header
required

Query Parameters

dialects
string

Includes dialect information in each document

examples
string

Includes examples associated with each document

wordClasses
string

Comma-separated string of word classes that filters words that match the word class (a.k.a. part of speech)

Response

200
application/json
Words response

The response is of type object.