get_interlinear_verse_analysis
biblehub.comRetrieves word-by-word interlinear analysis for a Bible verse from https://biblehub.com, including source-language words, transliterations, English glosses, morphology, and Strong's details. Also returns the full King James Bible and American Standard Version text for the requested verse.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_interlinear_verse_analysis?
Retrieves word-by-word interlinear analysis for a Bible verse from https://biblehub.com, including source-language words, transliterations, English glosses, morphology, and Strong's details. Also returns the full King James Bible and American Standard Version text for the requested verse. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass book_slug, chapter, verse, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"verse": 0,
"words": [
{}
],
"chapter": 0,
"asv_text": "<string>",
"kjv_text": "<string>",
"book_slug": "<string>",
"source_url": "<string>",
"verse_title": "<string>",
"language_system": "<string>",
"verse_reference": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/c4f63c98-0745-4f64-b560-1ad8646bb5ac/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "c4f63c98-0745-4f64-b560-1ad8646bb5ac",
"variables": {
"book_slug": "genesis",
"chapter": 1,
"verse": 1,
"timeout_seconds": "DEFAULT_TIMEOUT_SECONDS"
}
}'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="c4f63c98-0745-4f64-b560-1ad8646bb5ac") — the "get_interlinear_verse_analysis" function, which retrieves word-by-word interlinear analysis for a Bible verse from https://biblehub.com, including source-language words, transliterations, English glosses, morphology, and Strong's details. Also returns the full King James Bible and American Standard Version text for the requested verse.. It takes book_slug (str), chapter (int), verse (int), timeout_seconds (int). Return the result as structured JSON.