Skip to content

Quick Start

Get started with ApiBiblia in just a few minutes.

1. Create an Account

First, create a free account at app.apibiblia.com/register.

2. Get Your API Key

After signing in, go to your Dashboard and click Create New Key.

TIP

Store your API key securely - you'll only see it once!

3. Make Your First Request

Use your API key to make a request:

bash
curl "https://api.apibiblia.com/v1/passage?ref=John 3:16" \
  -H "X-API-Key: YOUR_API_KEY"
javascript
const response = await fetch(
  'https://api.apibiblia.com/v1/passage?ref=John 3:16',
  {
    headers: {
      'X-API-Key': 'YOUR_API_KEY'
    }
  }
);
const data = await response.json();
console.log(data);
python
import requests

response = requests.get(
    'https://api.apibiblia.com/v1/passage',
    params={'ref': 'John 3:16'},
    headers={'X-API-Key': 'YOUR_API_KEY'}
)
data = response.json()
print(data)

4. Explore the API

Now that you're set up, explore what you can do:

EndpointDescription
GET /v1/versionsList all available Bible versions
GET /v1/booksList books in a version
GET /v1/chapters/:idGet a full chapter
GET /v1/verses/:idGet a specific verse
GET /v1/passageGet verses by reference
GET /v1/searchSearch for verses

Common Use Cases

Get a Specific Verse

bash
curl "https://api.apibiblia.com/v1/passage?ref=Psalm 23:1&version=rvr60" \
  -H "X-API-Key: YOUR_API_KEY"

Get a Verse Range

bash
curl "https://api.apibiblia.com/v1/passage?ref=Romans 8:28-30" \
  -H "X-API-Key: YOUR_API_KEY"

Get an Entire Chapter

bash
curl "https://api.apibiblia.com/v1/passage?ref=Psalm 23" \
  -H "X-API-Key: YOUR_API_KEY"

Search for Verses

bash
curl "https://api.apibiblia.com/v1/search?q=amor&version=rvr60" \
  -H "X-API-Key: YOUR_API_KEY"

Next Steps

Built on Cloudflare's global edge network.