get_greek_lexicon_batch
biblehub.comRetrieves multiple Greek Strong's lexicon records from https://biblehub.com with definitions, morphology, forms, concordance examples, field filtering, and per-record failures.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_greek_lexicon_batch?
Retrieves multiple Greek Strong's lexicon records from https://biblehub.com with definitions, morphology, forms, concordance examples, field filtering, and per-record failures. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass strongs_numbers, fields, batch_size, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"source": "<string>",
"entries": [
{}
],
"skipped": [
{
"error": "<string>",
"strongs_number": 0,
"requested_value": "<string>"
}
],
"language": "<string>",
"skipped_count": 0,
"returned_count": 0,
"requested_count": 0,
"returned_fields": [
"<string>"
],
"available_fields": [
"<string>"
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/2074ebdd-8586-45ef-83ae-c0d30ae24afc/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "2074ebdd-8586-45ef-83ae-c0d30ae24afc",
"variables": {
"strongs_numbers": "DEFAULT_STRONGS_NUMBERS",
"fields": [],
"batch_size": 8,
"timeout_seconds": 20
}
}'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="2074ebdd-8586-45ef-83ae-c0d30ae24afc") — the "get_greek_lexicon_batch" function, which retrieves multiple Greek Strong's lexicon records from https://biblehub.com with definitions, morphology, forms, concordance examples, field filtering, and per-record failures.. It takes strongs_numbers (list[int]), fields (list[str]), batch_size (int), timeout_seconds (int). Return the result as structured JSON.