Skip to main content
GET
/
entities
/
{id}
/
paragraphs
Get paragraphs mentioning an entity
curl --request GET \
  --url https://api.urantia.dev/entities/{id}/paragraphs
{
  "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": {},
      "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.

Path Parameters

id
string
required

Query Parameters

page
integer | null
default:0
Required range: x >= 0
limit
integer
default:20
Required range: 1 <= x <= 100
lang
enum<string>
default:eng
Available options:
eng,
es,
fr,
pt,
de,
ko

Response

Paginated paragraphs mentioning the entity

data
object[]
required
meta
object
required