Dictionary

Get word definitions, IPA phonetics, usage examples, and synonyms in a single request. Perfect for vocabulary tools, writing assistants, and educational applications.

Get API Key

Overview

Use Cases

  • Vocabulary learning and flashcard apps
  • Writing assistance and enrichment tools
  • Educational platforms and language learning
  • Word game development
  • Content creation and SEO tools

Features

IPA phonetic transcriptions
Multiple definitions per word (noun, adjective, verb, etc.)
Usage examples for each definition
Synonyms included in every response
Case-insensitive lookup
Fast, low-latency in-memory responses

API Endpoints

Dictionary Lookup

Returns the definition, phonetics, examples, and synonyms for the given word.

GET
https://api.requiems.xyz/v1/text/dictionary/{word}

Parameters

Name Type Required Description
word string Required The word to look up in the dictionary

Try it out

Live Demo
Request

The word to look up in the dictionary

Response Fields

Field Type Description
word string The normalized (lowercased) word that was looked up
phonetic string IPA phonetic transcription of the word (may be omitted if unavailable)
definitions array of objects One or more definitions for the word, each with partOfSpeech, definition, and an optional example
definitions[].partOfSpeech string Grammatical category (e.g. noun, verb, adjective)
definitions[].definition string Plain-text definition of the word
definitions[].example string Example sentence using the word (may be omitted)
synonyms array of strings List of words with similar meaning

Code Examples

curl https://api.requiems.xyz/v1/text/dictionary/ephemeral \
  -H "requiems-api-key: YOUR_API_KEY"

Error Responses

not_found

The word was not found in the dictionary dataset.

bad_request

The word path parameter is missing.

Frequently Asked Questions