Discover/thesaurus.com API
live

thesaurus.com APIthesaurus.com

Retrieve synonyms, antonyms, related words, usage examples, and Word of the Day from Thesaurus.com. Two endpoints, similarity scores included.

Endpoints
2
Updated
14d ago
Try it
The word to look up (e.g. 'happy', 'run').
api.parse.bot/scraper/612a118a-3712-4634-aed3-34d6ea47595f/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/612a118a-3712-4634-aed3-34d6ea47595f/get_word_details?word=happy' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 2 totalclick to expand

Retrieves synonyms, antonyms, examples, and related words for a given word from Thesaurus.com.

Input
ParamTypeDescription
wordrequiredstringThe word to look up (e.g. 'happy', 'run').
Response
{
  "type": "object",
  "fields": {
    "word": "string — the headword as displayed on the page",
    "senses": "array of objects with part_of_speech, definition, synonyms (array of {word, similarity}), antonyms (array of {word, similarity})",
    "examples": "array of strings — usage example sentences",
    "source_url": "string — the URL fetched",
    "related_words": "array of strings — related words and phrases",
    "total_words_count": "integer or null — total number of synonyms/antonyms reported"
  },
  "sample": {
    "data": {
      "word": "happy",
      "senses": [
        {
          "antonyms": [
            {
              "word": "depressed",
              "similarity": -100
            },
            {
              "word": "sad",
              "similarity": -100
            }
          ],
          "synonyms": [
            {
              "word": "cheerful",
              "similarity": 100
            },
            {
              "word": "delighted",
              "similarity": 100
            }
          ],
          "definition": "in high spirits; delighted",
          "part_of_speech": "ADJECTIVE"
        }
      ],
      "examples": [
        "I was very happy with the results."
      ],
      "source_url": "https://www.thesaurus.com/browse/happy",
      "related_words": [
        "airy",
        "animate",
        "cheerful"
      ],
      "total_words_count": 164
    },
    "status": "success"
  }
}

About the thesaurus.com API

The Thesaurus.com API provides two endpoints covering word lookup and daily vocabulary content. The get_word_details endpoint returns structured synonym and antonym sets with per-word similarity scores, part-of-speech groupings, definitions, usage examples, and related words for any English headword. The get_word_of_the_day endpoint delivers the current featured word with its definition, pronunciation, and example sentence.

Word Details Endpoint

The get_word_details endpoint accepts a single required parameter, word, and returns data organized into senses — an array of objects each containing a part_of_speech, a definition, a synonyms array, and an antonyms array. Both synonyms and antonyms entries include a word string and a similarity score, which reflects how closely each term matches the headword according to Thesaurus.com's editorial data. The response also includes examples (an array of usage sentences), related_words, the canonical source_url, and a total_words_count integer when available.

Word of the Day Endpoint

The get_word_of_the_day endpoint takes no parameters. It returns today's featured word as headword, along with partOfSpeech, a short definition, a longer explanation covering meaning and etymology, an exampleSentence, and a pronunciation object containing phonetics and an audio_url (which may be null). The date field is a human-readable string such as "May 7, 2026".

Data Structure Notes

Synonyms and antonyms are grouped by sense, not flattened into a single list. A word with multiple parts of speech (e.g., "run" as a noun and a verb) will produce multiple objects inside senses, each with its own synonym and antonym arrays. The total_words_count field reflects the aggregate count reported for the headword and may be null if the source does not expose a figure for that entry.

Common use cases
  • Building a writing assistant that suggests synonyms ranked by similarity score for a given word
  • Populating a vocabulary quiz app with daily questions drawn from get_word_of_the_day
  • Augmenting NLP pipelines with antonym sets grouped by part of speech
  • Generating word relationship graphs using the related_words array from get_word_details
  • Delivering a daily push notification to language-learning app users with the Word of the Day definition and example sentence
  • Cross-referencing usage examples against a corpus to identify context-appropriate synonyms
  • Filtering synonym suggestions by part of speech to enforce grammatical consistency in automated text editing
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Thesaurus.com offer an official developer API?+
Thesaurus.com does not publish a public developer API. The data exposed here — synonyms, antonyms, senses, and Word of the Day — is not available through an official programmatic interface from the site.
What does the similarity score in the synonyms and antonyms arrays represent?+
Each entry in the synonyms and antonyms arrays includes a similarity field that reflects the editorial strength-of-match rating Thesaurus.com assigns to that word relative to the headword. Higher values indicate a closer match. The score is a property of the source data, not a computed value added by this API.
Are historical Word of the Day entries accessible through the API?+
Not currently. The get_word_of_the_day endpoint returns only the current day's word and does not expose an archive of past entries. You can fork this API on Parse and revise it to add an endpoint targeting historical Word of the Day URLs if that archive is accessible.
Does the API cover words in languages other than English?+
Not currently. Thesaurus.com is an English-language resource, and both endpoints return English headwords, definitions, and examples only. You can fork this API on Parse and revise it to point at a different thesaurus source if multilingual coverage is needed.
Can I look up multiple words in a single request to `get_word_details`?+
The get_word_details endpoint accepts one word parameter per request and returns data for that single headword. Batch lookups are not supported natively. You would need to make one request per word and aggregate the results client-side.
Page content last updated . Spec covers 2 endpoints from thesaurus.com.
Related APIs in EducationSee all →
arxiv.org API
Search and discover academic research papers on arXiv using keywords, authors, titles, categories, and dates, then access detailed metadata for any paper. Browse the complete arXiv category taxonomy to explore research across different scientific disciplines.
maxpreps.com API
Access high school sports data from MaxPreps. Search for schools, retrieve team rosters and schedules, look up athlete profiles, and browse national or state rankings across all sports.
athletic.net API
Search and analyze cross country and track & field performance data across the US, including athlete profiles, meet results, team rosters, and rankings. Access comprehensive meet information, historical records, and state-level competition data to track athlete progress and discover top performers.
allaboutcircuits.com API
Access educational electronics content from All About Circuits, including technical articles, circuit diagrams, textbook volumes, and forum discussions organized by category. Search and browse the latest resources, view detailed articles, explore engineering tools, and find answers across their community forums.
illinoisreportcard.com API
Search and analyze comprehensive performance data for Illinois public schools, districts, and the state, including academic achievements in ELA, math, and science, student demographics, teacher and administrator information, school finances, and environmental conditions. Compare schools side-by-side, track growth metrics, and access accountability ratings and school highlights to make informed decisions about education quality.
noor-book.com API
Search and discover books across 1,800+ categories in the Noor Book library, retrieving detailed information about titles, authors, biographies, and book metadata. Access comprehensive author profiles and browse one of the largest Arabic and English digital book collections with over 289,000 authors.
quizbowlpackets.com API
Search and browse thousands of quizbowl question sets across all competition levels, then access detailed metadata like difficulty, subjects, and download links for each packet. Find the perfect practice materials for High School, Collegiate, Middle School, or Pop Culture quizbowl competitions.
amberstudent.com API
Search student accommodation listings across popular cities and access comprehensive property information including room types, pricing trends, and tenant reviews. Get detailed insights into student housing options to compare amenities, prices, and community feedback all in one place.