lookup_translations
glosbe.comLooks up Glosbe dictionary translations from https://glosbe.com. Returns matched translation candidates with parts of speech, definitions, pronunciation metadata, grammar details, attributions, and bilingual usage examples.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is lookup_translations?
Looks up Glosbe dictionary translations from https://glosbe.com. Returns matched translation candidates with parts of speech, definitions, pronunciation metadata, grammar details, attributions, and bilingual usage examples. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass word_or_phrase, source_language, target_language and get the result back without maintaining a scraper.
Response
{
"query": "<string>",
"candidates": [
{
"definitions": [
{}
],
"translation": "<string>",
"record_details": {},
"usage_examples": [
{
"attribution": "<string>",
"source_text": "<string>",
"target_text": "<string>"
}
],
"parts_of_speech": [
"<string>"
],
"brief_definition": "<string>",
"source_entry_url": "<string>",
"record_attributions": [
"<string>"
],
"dictionary_entry_url": "<string>",
"matched_source_phrase": "<string>"
}
],
"source_url": "<string>",
"candidate_count": 0,
"source_language_code": "<string>",
"source_language_name": "<string>",
"target_language_code": "<string>",
"target_language_name": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/59673d8d-919d-443c-966d-4d11a5b4dd67/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "59673d8d-919d-443c-966d-4d11a5b4dd67",
"variables": {
"word_or_phrase": "house",
"source_language": "en",
"target_language": "es"
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="59673d8d-919d-443c-966d-4d11a5b4dd67") — the "lookup_translations" function, which looks up Glosbe dictionary translations from https://glosbe.com. Returns matched translation candidates with parts of speech, definitions, pronunciation metadata, grammar details, attributions, and bilingual usage examples.. It takes word_or_phrase (str), source_language (str), target_language (str). Return the result as structured JSON.