Marketplace
No threads yet
Live

get_passage_interlinear

biblehub.com

Returns combined word-by-word Hebrew or Greek interlinear verses from https://biblehub.com with full morphology, Strong's details, and KJV and ASV text.

Parameters6
Runs5
Updated3d ago
Operational5 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_passage_interlinear?

Returns combined word-by-word Hebrew or Greek interlinear verses from https://biblehub.com with full morphology, Strong's details, and KJV and ASV text. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass book_slug, chapter, start_verse, end_verse, timeout_seconds, max_retries and get the result back without maintaining a scraper.

Response

{
  "verses": [
    {
      "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>"
    }
  ],
  "chapter": 0,
  "book_name": "<string>",
  "book_slug": "<string>",
  "verse_count": 0,
  "language_system": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/3468d0d3-20db-4f6f-acd7-0bde42a8f2f5/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "3468d0d3-20db-4f6f-acd7-0bde42a8f2f5",
    "variables": {
        "book_slug": "genesis",
        "chapter": 1,
        "start_verse": 0,
        "end_verse": 0,
        "timeout_seconds": 20,
        "max_retries": 3
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="3468d0d3-20db-4f6f-acd7-0bde42a8f2f5") — the "get_passage_interlinear" function, which returns combined word-by-word Hebrew or Greek interlinear verses from https://biblehub.com with full morphology, Strong's details, and KJV and ASV text..

It takes book_slug (str), chapter (int), start_verse (int), end_verse (int), timeout_seconds (int), max_retries (int). Return the result as structured JSON.