Skip to main content
POST
/
search
Full-text search across all paragraphs
curl --request POST \
  --url https://api.urantia.dev/search \
  --header 'Content-Type: application/json' \
  --data '
{
  "q": "<string>",
  "page": 0,
  "limit": 20,
  "paperId": "<string>",
  "partId": "<string>",
  "type": "and",
  "include": "<string>"
}
'
{
  "data": [
    {
      "id": "<string>",
      "standardReferenceId": "<string>",
      "sortId": "<string>",
      "paperId": "<string>",
      "sectionId": "<string>",
      "partId": "<string>",
      "paperTitle": "<string>",
      "sectionTitle": "<string>",
      "paragraphId": "<string>",
      "text": "<string>",
      "htmlText": "<string>",
      "labels": [
        "<string>"
      ],
      "audio": {},
      "rank": 123,
      "language": "<string>",
      "entities": [
        {
          "id": "<string>",
          "name": "<string>",
          "type": "being"
        }
      ],
      "bibleParallels": [
        {
          "chunkId": "<string>",
          "reference": "<string>",
          "bookCode": "<string>",
          "chapter": 123,
          "verseStart": 123,
          "verseEnd": 123,
          "text": "<string>",
          "similarity": 123,
          "rank": 123,
          "source": "<string>",
          "embeddingModel": "<string>"
        }
      ],
      "urantiaParallels": [
        {
          "id": "<string>",
          "standardReferenceId": "<string>",
          "paperId": "<string>",
          "paperTitle": "<string>",
          "sectionTitle": "<string>",
          "text": "<string>",
          "similarity": 123,
          "rank": 123,
          "source": "<string>",
          "embeddingModel": "<string>"
        }
      ]
    }
  ],
  "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 - 500
page
integer
default:0
Required range: x >= 0
limit
integer
default:20
Required range: 1 <= x <= 100
paperId
string
partId
string
type
enum<string>
default:and
Available options:
phrase,
and,
or
include
string

Response

Search results with pagination

data
object[]
required
meta
object
required