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": {},
      "entities": [
        {
          "id": "<string>",
          "name": "<string>",
          "type": "being"
        }
      ]
    }
  ],
  "meta": {
    "page": 123,
    "limit": 123,
    "total": 123,
    "totalPages": 123
  }
}

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

Response

Paginated paragraphs mentioning the entity

data
object[]
required
meta
object
required