Skip to main content
POST
/
bible
/
search
/
semantic
Semantic search across the Bible (with UB paragraphs)
curl --request POST \
  --url https://api.urantia.dev/bible/search/semantic \
  --header 'Content-Type: application/json' \
  --data '
{
  "q": "<string>",
  "page": 0,
  "limit": 20,
  "canon": "ot",
  "bookCode": "<string>",
  "urantiaParallelLimit": 3
}
'
{
  "data": [
    {
      "id": "<string>",
      "reference": "<string>",
      "bookCode": "<string>",
      "bookName": "<string>",
      "canon": "ot",
      "chapter": 123,
      "verseStart": 123,
      "verseEnd": 123,
      "text": "<string>",
      "similarity": 123,
      "urantiaParallels": [
        {
          "id": "<string>",
          "standardReferenceId": "<string>",
          "paperId": "<string>",
          "paperTitle": "<string>",
          "sectionTitle": "<string>",
          "text": "<string>",
          "similarity": 123,
          "rank": 123
        }
      ]
    }
  ],
  "meta": {
    "page": 123,
    "limit": 123,
    "total": 123,
    "totalPages": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://urantia.dev/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json
q
string
required
Required string length: 1 - 2000
page
integer
default:0
Required range: x >= 0
limit
integer
default:20
Required range: 1 <= x <= 100
canon
enum<string>
Available options:
ot,
deuterocanon,
nt
bookCode
string
Minimum string length: 1
urantiaParallelLimit
integer
default:3
Required range: 0 <= x <= 10

Response

Bible semantic search results

data
object[]
required
meta
object
required