Diccionario de la Real Academia de la Lengua Española RAE (R)

Diccionario de la Real Academia de la Lengua Española RAE (R)

Accede a definiciones oficiales del español directamente en formato JSON. Obtén significados, categorías gramaticales y usos de cualquier palabra. Ideal para aplicaciones educativas, correctores y análisis lingüístico.

AUTOMATIONDEVELOPER_TOOLSINTEGRATIONSApify

📚 RAE API Actor for Apify

A powerful Actor for accessing the Real Academia Española (RAE) dictionary and retrieving structured data such as definitions, conjugations, synonyms, antonyms, and more. This Actor is built to integrate easily with your applications, games, and research tools.

Included features

  • Apify SDK - A toolkit for building Actors on the Apify platform.
  • Input schema - Define and validate a schema for your Actor's input.
  • Dataset - Store structured data where each object stored has the same attributes.
  • RAE API - Retrieve linguistic data from the Real Academia Española dictionary.
  • JSON Output - Structured data formatted for easy parsing and integration.

How it works

  1. Actor.getInput() retrieves the input where the word to be queried is defined.
  2. The Actor fetches structured data related to the word, including:
    • Definitions
    • Conjugations
    • Synonyms and Antonyms
    • Word origin
  3. The retrieved data is then stored in the Apify Dataset using Actor.pushData().
  4. The structured JSON output can be used for various purposes, including word games, educational tools, and research.

Example input:

1{
2    "word": "hablar"
3}

Example output:

1{
2  "word": "hablar",
3  "meanings": [
4    {
5      "origin": {
6        "raw": "Del lat. fabulāri.",
7        "type": "lat",
8        "text": "fabulāri"
9      },
10      "senses": [
11        {
12          "raw": "1. intr. Emitir palabras.",
13          "meaning_number": 1,
14          "category": "verb",
15          "synonyms": ["balbucir", "tartamudear"],
16          "antonyms": ["callar"]
17        }
18      ]
19    }
20  ],
21  "conjugations": {
22    "non_personal": {
23      "infinitive": "hablar",
24      "participle": "hablado",
25      "gerund": "hablando"
26    }
27  }
28}

Resources

Getting started

To build and run this Actor on Apify:

  1. Build the Actor:

    apify build
  2. Run the Actor:

    apify run

Pull the Actor for local development

If you would like to develop locally, you can pull the existing Actor from Apify Console using Apify CLI:

  1. Install apify-cli

    Using Homebrew:

    brew install apify-cli

    Using NPM:

    npm -g install apify-cli
  2. Pull the Actor by its unique <ActorId>:

    apify pull <ActorId>

    Replace <ActorId> with the unique name or ID of your Actor.

Documentation reference

To learn more about Apify and building Actors, take a look at the following resources:

Frequently Asked Questions

Is it legal to scrape job listings or public data?

Yes, if you're scraping publicly available data for personal or internal use. Always review Websute's Terms of Service before large-scale use or redistribution.

Do I need to code to use this scraper?

No. This is a no-code tool — just enter a job title, location, and run the scraper directly from your dashboard or Apify actor page.

What data does it extract?

It extracts job titles, companies, salaries (if available), descriptions, locations, and post dates. You can export all of it to Excel or JSON.

Can I scrape multiple pages or filter by location?

Yes, you can scrape multiple pages and refine by job title, location, keyword, or more depending on the input settings you use.

How do I get started?

You can use the Try Now button on this page to go to the scraper. You’ll be guided to input a search term and get structured results. No setup needed!