VOOZH about

URL: https://apify.com/vivid_astronaut/dictionary

⇱ Dictionary API Β· Apify


Pricing

from $5.00 / 1,000 results

Go to Apify Store

Pricing

from $5.00 / 1,000 results

Rating

0.0

(0)

Developer

πŸ‘ Fabio Suizu

Fabio Suizu

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

0

Monthly active users

6 months ago

Last modified

Categories

Share

Dictionary service powered by Azure. Fast, reliable, and scalable API.

Features

  • Fast Processing: Lightning-fast dictionary api powered by Azure
  • Reliable: 99.9% uptime with automatic failover
  • Scalable: Handle single requests or bulk operations
  • Secure: Enterprise-grade security with API key authentication
  • Well Documented: Comprehensive API documentation and examples

Use Cases

  • Development: Integrate into your development workflow
  • Automation: Build automated pipelines
  • Integration: Connect with other services

Input Parameters

ParameterTypeRequiredDescription
dataobjectNoInput data to process. Send your API request payload here.
endpointstringNoSpecific endpoint to call (e.g., /api/v1/process)

Output Format

{
"success":true,
"result":{ ... },
"timestamp":"2026-01-07T00:00:00Z"
}

Code Examples

JavaScript (Node.js)

import{ ApifyClient }from'apify-client';
const client =newApifyClient({token:'YOUR_API_TOKEN'});
const input ={
"data":{},
"endpoint":"/api/v1/process"
};
const run =await client.actor("vivid_astronaut/dictionary").call(input);
const{ items }=await client.dataset(run.defaultDatasetId).listItems();
console.log(items);

Python

from apify_client import ApifyClient
client = ApifyClient("YOUR_API_TOKEN")
run_input ={
"data":{},
"endpoint":"/api/v1/process"
}
run = client.actor("vivid_astronaut/dictionary").call(run_input=run_input)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item)

cURL

curl-X POST "https://api.apify.com/v2/acts/vivid_astronaut~dictionary/runs?token=YOUR_API_TOKEN"\
-H"Content-Type: application/json"\
-d'{
"data": {},
"endpoint": "/api/v1/process"
}'

Pricing

Model: Pay per result Price: $0.005 per result

You only pay for successful results. Platform usage costs are included.

API Documentation

Full API documentation is available at:

Support

Version History

See ./CHANGELOG.md for version history.


Powered by Azure Cloud Infrastructure

You might also like

Yandex Translator and Dictionary API AI

dev00/yandex-translator-dictionary-api

Ultra-fast translation, batch processing, HTML preservation, and rich bilingual dictionary definitions powered by the Yandex NLP Engine.

dev00

2

Dictionary MCP Server

agentify/dictionary-mcp-server

Dictionary and thesaurus MCP server proxy exposing define, example_usage, and synonyms tools over Streamable HTTP.

Cambridge Dictionary Scraper

alvaraaz/cambridge-dictionary-actor

Search words in the Cambridge Dictionary with this actor. Get definitions, examples, phonetics and CEFR levels.

πŸ‘ User avatar

Jose Fernando Álvarez Romero

4

Free Dictionary Scraper

gio21/free-dictionary-scraper

Look up word definitions, phonetics, audio pronunciation, synonyms, antonyms, examples via the Free Dictionary API. No API key. Multi-language. For dictionaries, language learning, NLP datasets.

Oxford English Dictionary

pokeball/oxford-english-dictionary

Scrape words, definitions, part of speech, percentage_popularity from the Oxford English Dictionary

Urban Dictionary

shahidirfan/Urban-Dictionary-API

Introducing the Urban Dictionary Scraper, a lightweight actor for efficiently scraping slang definitions, examples, and word trends. Fast and simple to configure. For best results and to avoid rate limits during high-volume scraping, the use of residential proxies is recommended.

7

5.0

RAE Spanish Dictionary β€” Real Academia EspaΓ±ola Official Lookup

maged120/real-academia-espanola-rae-api

Look up any Spanish word in the Real Academia EspaΓ±ola (RAE) official dictionary. Returns full definitions, usage examples, grammar classifications, and word forms in structured JSON.

Urban Dictionary Definitions Scraper

parseforge/urbandictionary-definitions-scraper

Scrape Urban Dictionary slang definitions: word, definition, example, author, thumbs up, thumbs down, date, defid, and permalink. Track new and trending internet slang, memes, and youth vocabulary. Export to JSON, CSV, or Excel for cultural research, NLP datasets, and trend monitoring.

Related articles

Python dictionaries: a comprehensive guide for devs
Read more