Interactive API Explorer

Run live requests against the Scripture API. Edit parameters, inspect responses, and copy code snippets — no signup required.

John 3:16 with Strong's

Fetch a single verse with Strong's concordance data. Every word is mapped to its original Greek/Hebrew number.

GET/api/v1/verses/john/3/16?translation=KJV&strongs=true

Parameters

book
Book slug
chapter
Chapter number
verse
Verse number
translation
KJV or WEB
strongs
Include Strong's data

Code Snippet

const res = await fetch('/api/v1/verses/john/3/16?translation=KJV&strongs=true');
const data = await res.json();
console.log(data);

Response

Select an example from the left,
edit parameters, then click Run Request.