
From Topic -> Scripture -> Application
Most Bible APIs stop at verses. Let's go further. Start with a concept: Suffering Step 1 — Resolve the Topic curl --get https://holybible.dev/api/topics \ -H "Authorization: Bearer bb_free_demo" \ --data-urlencode "q=suffering" You get a canonical node — not a keyword match, not a guess: { "status" : "success" , "query" : "suffering" , "matches" : [ { "slug" : "suffering" , "name" : "Suffering" , "type" : "experience" , "match_type" : "exact" , "score" : 1 , "anchor_count" : 5 , "verse_count" : 5 } ], "related" : [ { "slug" : "hope" , "name" : "Hope" , "type" : "virtue" , "relation" : "related" , "direction" : "outgoing" }, { "slug" : "patience" , "name" : "Patience" , "type" : "virtue" , "relation" : "related" , "direction" : "incoming" } ] } A defined concept. One you can reason from. Related graph nodes surface immediately. Step 2 — Fetch the Topic Structure curl https://holybible.dev/api/topics/suffering \ -H "Authorization: Bearer bb_free_demo" The response gives you everything ne
Continue reading on Dev.to Tutorial
Opens in a new tab


