Discover/Rimessolides API
live

Rimessolides APIrimessolides.com

Retrieve curated French lexical fields from rimessolides.com. Get semantically related words for any French term via a single endpoint with no pagination.

This API takes change requests — .
Endpoint health
verified 3h ago
get_lexical_field
1/1 passing latest checkself-healing
Endpoints
1
Updated
3h ago

What is the Rimessolides API?

The rimessolides.com API exposes 1 endpoint, get_lexical_field, that returns a flat list of semantically related French words for any given input term. A single call delivers the full result set — including the related_words array, a count of matches, and a descriptive title — with no pagination required. It covers the breadth of the French lexicon, making it straightforward to look up thematic vocabulary for words like 'maison', 'amour', or 'voyage'.

This call costs1 credit / call— charged only on success
Try it
French word to look up the lexical field for (e.g. 'maison', 'amour', 'voyage').
api.parse.bot/scraper/da3b85ed-deee-4dd7-b058-ee52de70d97b/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/da3b85ed-deee-4dd7-b058-ee52de70d97b/get_lexical_field?word=maison' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace rimessolides-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Rimes Solides lexical field lookup."""
from parse_apis.rimessolides_com_api import RimesSolides, InputFormatInvalid

client = RimesSolides()

# Look up the lexical field for a common French word.
field = client.lexical_fields.get(word="maison")
print(f"{field.title} — {field.count} related words")

# Show the first ten related words ordered by relevance.
for w in field.related_words[:10]:
    print(" ", w)

# Handle an invalid input gracefully.
try:
    client.lexical_fields.get(word="")
except InputFormatInvalid as e:
    print(f"Expected error for empty input: {e.message}")

print("exercised: lexical_fields.get")
All endpoints · 1 totalmissing one? ·

Given a French word, returns a list of semantically related words (champ lexical). The site produces a flat list of related terms ordered by relevance. Returns all words the site provides in a single call with no pagination.

Input
ParamTypeDescription
wordrequiredstringFrench word to look up the lexical field for (e.g. 'maison', 'amour', 'voyage').
Response
{
  "type": "object",
  "fields": {
    "word": "The input word that was searched",
    "count": "Total number of related words returned",
    "title": "Page heading describing the lexical field",
    "related_words": "Array of related French words ordered by relevance"
  },
  "sample": {
    "data": {
      "word": "maison",
      "count": 300,
      "title": "Champ lexical avec \"maison\"",
      "related_words": [
        "habitation",
        "villa",
        "cottage",
        "maisonnette",
        "toit",
        "domestique",
        "résidence"
      ]
    },
    "status": "success"
  }
}

About the Rimessolides API

What the API Returns

The get_lexical_field endpoint accepts a single required parameter, word, which must be a French string (e.g., 'voyage', 'amour'). The response contains four fields: word echoing the input, title providing the page-level heading that describes the semantic domain, count giving the total number of related terms found, and related_words, an ordered array of French words ranked by relevance to the input.

Response Shape and Ordering

related_words is a flat array — no nested categories, no scores, no part-of-speech tags. The ordering reflects the site's own relevance ranking, so words appearing earlier in the array are considered more central to the lexical field. There is no server-side filtering or pagination; every term the source provides is returned in one response, and count confirms how many entries the array contains.

Coverage and Scope

The endpoint covers general French vocabulary. It is well-suited for creative writing tools, educational applications, and NLP preprocessing tasks that require thematically grouped French words. The source draws from curated lexical data, so coverage depth varies by word: common nouns and verbs tend to yield larger related_words arrays than rare or highly technical terms.

Reliability & maintenanceVerified

The Rimessolides API is a managed, monitored endpoint for rimessolides.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when rimessolides.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official rimessolides.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3h ago
Latest check
1/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Expanding thematic vocabulary in a French language-learning application using related_words
  • Seeding a synonym/association graph for French NLP pipelines from the related_words array
  • Powering autocomplete or topic suggestions in a French creative writing editor
  • Generating semantic word clusters for French content tagging and SEO keyword grouping
  • Building vocabulary quiz content by pulling lexical fields around a target French word
  • Enriching French poetry or songwriting tools with semantically adjacent terms via get_lexical_field
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does rimessolides.com have an official developer API?+
No. Rimessolides.com does not publish an official developer API or documented public endpoints for programmatic access to its lexical data.
What does the `related_words` array actually contain — are there scores, categories, or part-of-speech labels?+
The array contains plain French word strings only, ordered by the source's relevance ranking. There are no numeric scores, part-of-speech tags, or sub-categories within the array. The count field tells you how many items are in the array for a given lookup.
Does the API support looking up rhymes or synonyms separately from lexical fields?+
Not currently. The API covers only the lexical field (champ lexical) for a given word, returned via get_lexical_field. Rimessolides.com also hosts rhyme and synonym data, but those are not exposed by this API. You can fork it on Parse and revise to add endpoints covering those data types.
What happens when I query a word that has very few or no related terms on the site?+
The response will still include all four fields (word, title, count, related_words), but count will be low and related_words will be a short or empty array. Rare technical terms and proper nouns are more likely to return sparse results than common French vocabulary.
Can I retrieve lexical fields for multiple words in a single API call?+
Not currently. The get_lexical_field endpoint accepts one word parameter per call and returns results for that single term. You can fork it on Parse and revise to add a batch endpoint that accepts multiple words and returns an array of lexical field results.
Page content last updated . Spec covers 1 endpoint from rimessolides.com.
Related APIs in EducationSee all →
thesaurus.com API
Find synonyms, antonyms, related words, and usage examples for any word instantly. Look up the daily word of the day to expand your vocabulary every day.
wordreference.com API
Search for word translations across multiple languages using WordReference's comprehensive dictionary database. Retrieve detailed meanings, usage contexts, grammatical information, and example sentences. Access public vocabulary collections and word-of-the-day features.
usito.usherbrooke.ca API
Look up French-Canadian word definitions, search for specific terms, and access complete conjugation tables for verbs all in one place. Browse the entire USITO dictionary by letter or explore verb conjugation models to perfect your Quebec French.
datamuse.com API
Find words by meaning, sound, or rhyme, get autocomplete suggestions, and access word metadata to power your writing apps and tools. Perfect for building spell checkers, word games, and intelligent search features.
dwds.de API
Look up German words with detailed definitions, pronunciations, and usage examples, or explore curated word lists organized by proficiency level. Search vocabulary, discover random entries, and learn the featured word of the day to build your German language skills.
rexel.fr API
rexel.fr API
service-public.fr API
Search the official French public service portal (service-public.fr) for practical guides, legal information, administrative procedures, and support resources. Retrieve structured content from any guide or category page, explore autocomplete suggestions, and access legal references — all through a single unified API.
verbformen.com API
Search for German words and instantly access their translations, proficiency levels (A1-C2), grammatical categories, and IPA pronunciations to enhance your language learning. Perfect for understanding vocabulary difficulty, finding word meanings, and perfecting your German pronunciation all in one place.