Marketplace
No threads yet
Live

get_chapter_interlinear

biblehub.com

Returns word-by-word Hebrew or Greek interlinear data and KJV text for one or more chapters from https://biblehub.com, with retried failures listed by chapter.

Parameters5
Runs6
Updated3d ago
Operational6 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_chapter_interlinear?

Returns word-by-word Hebrew or Greek interlinear data and KJV text for one or more chapters from https://biblehub.com, with retried failures listed by chapter. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass book_slug, start_chapter, end_chapter, timeout_seconds, max_retries and get the result back without maintaining a scraper.

Response

{
  "chapters": [
    {
      "verses": [
        {
          "verse": 0,
          "words": [
            {}
          ],
          "kjv_text": "<string>",
          "verse_reference": "<string>"
        }
      ],
      "chapter": 0,
      "book_name": "<string>",
      "book_slug": "<string>",
      "source_url": "<string>",
      "verse_count": 0,
      "language_system": "<string>"
    }
  ],
  "book_name": "<string>",
  "book_slug": "<string>",
  "chapter_count": 0,
  "language_system": "<string>",
  "skipped_chapters": [
    0
  ],
  "skipped_chapter_details": [
    {
      "error": "<string>",
      "chapter": 0
    }
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/e86c2c8d-cdb3-414b-958e-082946599ca3/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "e86c2c8d-cdb3-414b-958e-082946599ca3",
    "variables": {
        "book_slug": "genesis",
        "start_chapter": 1,
        "end_chapter": 1,
        "timeout_seconds": 25,
        "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="e86c2c8d-cdb3-414b-958e-082946599ca3") — the "get_chapter_interlinear" function, which returns word-by-word Hebrew or Greek interlinear data and KJV text for one or more chapters from https://biblehub.com, with retried failures listed by chapter..

It takes book_slug (str), start_chapter (int), end_chapter (int), timeout_seconds (int), max_retries (int). Return the result as structured JSON.