Oxforddictionaries
Oxford Dictionaries is a lexical data service that provides dictionary definitions, word meanings, translations, and language reference data.
- Base URL:
https://od-api-demo.oxforddictionaries.com:443/api/v1 - Auth:
bearer(pass your key via theapiKeyinput)
Operations
get_domains_source_domains_language_target_domai— GET /domains/{source_domains_language}/{target_domains_language} — Lists available domains in a bilingual datasetget_domains_source_language— GET /domains/{source_language} — Lists available domains in a monolingual datasetget_entries_source_language_word_id_sentences— GET /entries/{source_language}/{word_id}/sentences — Retrieve corpus sentences for a given wordget_entries_source_lang_word_id— GET /entries/{source_lang}/{word_id} — Retrieve dictionary information for a given wordget_entries_source_lang_word_id_antonyms— GET /entries/{source_lang}/{word_id}/antonyms — Retrieve words that mean the oppositeget_entries_source_lang_word_id_regions_region— GET /entries/{source_lang}/{word_id}/regions={region} — Specify GB or US dictionary for English entry search
Inputs
apiKey— your oxforddictionaries API keyoperation— one of the operations above- path parameters when an operation's path contains
{...} query— optional JSON object of query paramsbody— JSON object for create/update ops
Example
operation: get_domains_source_domains_language_target_domai
apiKey: <your key>
Publishes
The keys a later task may reference as {{taskName.key}}. Referencing anything not listed here resolves to nothing at run time.
erroroperationresultstatus
Input Properties
Every property this tool accepts, from its own tool.iml.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
apiKey |
string | yes | — | DEPRECATED — bind an API Key credential to the task with credentialName instead. A key pasted here is stored in the workflow definition in clear and appears in every export of it. Still honoured for workflows built before the change. |
operation |
string | yes | — | One of: get_domains_source_domains_language_target_domai, get_domains_source_language, get_entries_source_language_word_id_sentences, get_entries_source_lang_word_id, get_entries_source_lang_word_id_antonyms, get_entries_source_lang_word_id_regions_region |
region |
string | no | — | Path parameter region (required by some operations). |
source_domains_language |
string | no | — | Path parameter source_domains_language (required by some operations). |
source_lang |
string | no | — | Path parameter source_lang (required by some operations). |
source_language |
string | no | — | Path parameter source_language (required by some operations). |
target_domains_language |
string | no | — | Path parameter target_domains_language (required by some operations). |
word_id |
string | no | — | Path parameter word_id (required by some operations). |
query |
string | no | — | Query-string parameters as a JSON object string, e.g. {"limit": 50}. Parsed and url-encoded onto the request. |