# CLAUDE Source: https://urantia.dev/CLAUDE # urantia-dev-mintlify-docs Mintlify-powered documentation for the Urantia Papers API ([https://urantia.dev](https://urantia.dev)). ## Tech Stack * Framework: Mintlify * Config: docs.json * Content: MDX files * API spec: api-reference/openapi.json (synced from production) ## Structure * `index.mdx` — Homepage * `quickstart.mdx` — Getting started guide * `use-cases.mdx` — Use case examples * `papers.mdx`, `paragraphs.mdx`, `entities.mdx`, `audio.mdx`, `cdn.mdx` — Data guides * `mcp-servers.mdx` — MCP server setup (API + Docs servers) * `ai-agents.mdx` — AI agent integration guide * `sdks/` — TypeScript SDK docs (split into 3 pages) * `overview.mdx` — Install, package comparison, "Using Both Together", demo link * `api.mdx` — @urantia/api usage patterns, endpoint groups, error handling * `auth.mdx` — @urantia/auth OAuth flows (redirect/popup/server), session management, scopes * `api-reference/` — Auto-generated endpoint docs from OpenAPI spec (17 endpoints) * `concepts/` — Urantia Book concept explainers (14 pages) * `quotes/` — Curated quote collections (15 themes) * `blog/` — Tutorial articles (4 posts) ## Navigation (docs.json) 5 tabs: Guides, API Reference, Concepts, Quotes, Blog Guides tab groups: Getting Started, Data, SDKs (Overview, @urantia/api, @urantia/auth), Integrations (MCP Servers, AI Agents), Donate, Legal ## Commands * `mint dev` — Local dev server (requires `npm i -g mint`) * Auto-deploys via Mintlify GitHub app on push to default branch ## Notes * No changelog — intentionally removed as unnecessary * Config file is `docs.json` (not `mint.json`) * Old single `sdks.mdx` was split into `sdks/` directory with 3 focused pages # AI Agent Integration - RAG & LLM Patterns for Urantia Book Source: https://urantia.dev/ai-agents Recommended patterns for integrating Urantia Book content into AI agents, RAG pipelines, and LLM applications. The Urantia Papers API is designed for AI agent consumption. Here's the recommended workflow. ## Recommended flow Call `GET /toc` to get the full table of contents — parts, papers, and their titles. Use `POST /search` for keyword matching, or `POST /search/semantic` for meaning-based similarity search. Semantic search finds conceptually related passages even without exact keyword matches — ideal for natural language queries from users. For each relevant result, call `GET /paragraphs/:ref/context?window=3` to get paragraphs before and after. This improves comprehension significantly. Use `GET /papers/:id` to read an entire paper when the topic warrants it. ## Search tips ### Full-text search (`POST /search`) Best for keyword-based queries. Supports three modes: * **`and`** (default) — all words must appear. Best for specific queries. * **`or`** — any word can appear. Best for broad exploratory queries. * **`phrase`** — exact phrase match. Best when quoting specific text. ```bash theme={null} curl -X POST https://api.urantia.dev/search \ -H "Content-Type: application/json" \ -d '{"q": "thought adjuster", "type": "and", "limit": 10}' ``` ### Semantic search (`POST /search/semantic`) Best for natural language queries. Uses vector embeddings to find conceptually similar passages, even when the exact words don't match. Returns results ranked by `similarity` (0-1). ```bash theme={null} curl -X POST https://api.urantia.dev/search/semantic \ -H "Content-Type: application/json" \ -d '{"q": "what happens after death", "limit": 10}' ``` Both search endpoints support `paperId` and `partId` filters to narrow scope. ## Entity lookup The API catalogs 4,400+ named entities — beings, places, orders, races, religions, and concepts — with descriptions and cross-references, sourced from [Urantiapedia](https://urantiapedia.org) by [Jan Herca](https://github.com/JanHerca). Use `GET /entities?q=` to find entities by name, or `GET /entities?type=being` to browse by type. Each entity includes a `citationCount` showing how often it appears. To find every paragraph that mentions an entity: ```bash theme={null} curl https://api.urantia.dev/entities/thought-adjusters/paragraphs ``` This is useful for building knowledge graphs, entity-aware RAG, or letting users explore topics by entity. You can also include entity mentions inline on any paragraph-returning endpoint by adding `?include=entities` (or `"include": "entities"` in search request bodies). Each entity includes an `id`, `name`, and `type`: ```bash theme={null} curl "https://api.urantia.dev/paragraphs/2:0.1?include=entities" ``` ## Bible cross-references The API hosts the World English Bible (38,034 verses, 81 books) alongside pre-computed UB↔Bible and UB↔UB semantic cross-references. Two ways to wire this into an agent: **1. Enrich any Urantia result inline.** Add `?include=bibleParallels` and/or `?include=urantiaParallels` to any paragraph-returning endpoint (`/paragraphs/{ref}`, `/paragraphs/random`, `/search`, `/search/semantic`) to get the top-10 semantically nearest Bible verses and/or Urantia paragraphs attached to each result. ```bash theme={null} curl "https://api.urantia.dev/paragraphs/2:0.1?include=entities,bibleParallels,urantiaParallels" ``` **2. Start from a Bible verse.** `GET /bible/{bookCode}/{chapter}/{verse}/urantia-parallels` returns the top-10 Urantia paragraphs nearest a given verse. `POST /bible/search/semantic` does free-form semantic search over the Bible and joins each hit against the UB cross-references in one request — useful when a user asks a Bible-shaped question and you want to surface the Urantia perspective alongside. These are *semantic* neighbors (computed with `text-embedding-3-large`), not curated linguistic parallels — top results are conceptually related (e.g. Matt 5:3 ↔ UB 140:3.3 at 0.854). Use them as RAG candidates, not as authoritative citations. ## Context window The `/paragraphs/:ref/context` endpoint is particularly useful for RAG. It returns the target paragraph plus surrounding paragraphs (configurable via the `window` parameter, 1-10). This provides the LLM with the narrative flow around a passage, which leads to more accurate and contextual responses. ## Function-calling schemas If you're working directly with the OpenAI or Anthropic SDKs (rather than going through MCP), the API publishes ready-to-use tool definitions for both. Drop them straight into your `tools` array — no manual schema authoring required. ```ts OpenAI theme={null} const { tools } = await fetch("https://api.urantia.dev/tools/openai").then(r => r.json()); const completion = await openai.chat.completions.create({ model: "gpt-5", messages, tools, // 19 tools, ready to go }); ``` ```ts Anthropic theme={null} const { tools } = await fetch("https://api.urantia.dev/tools/anthropic").then(r => r.json()); const message = await anthropic.messages.create({ model: "claude-opus-4-7", max_tokens: 1024, tools, // 19 tools, ready to go messages, }); ``` Each tool corresponds 1:1 with an MCP tool, so you can dispatch the call against either the REST API or the published `@urantia/api` SDK. ## MCP Servers Connect AI agents to the Urantia Book via 2 MCP servers — 19 tools + 2 resources + 2 prompts on the API server, plus docs search. One-click install via Smithery. ## OpenAPI spec The full OpenAPI 3.1 specification is available at: ``` https://api.urantia.dev/openapi.json ``` Use this to auto-generate typed clients in any language. # Bible Semantic Search Source: https://urantia.dev/api-reference/endpoint/bible-semantic-search POST /bible/search/semantic Free-form natural-language search across all 17,641 Bible chunks. Each result includes the top-N pre-computed Urantia paragraphs related to that chunk via the existing cross-reference data, so a single query surfaces both the Bible matches and the relevant UB content. Query is embedded via `text-embedding-3-small` (1536-d) and matched against `bible_chunks.embedding_small` with a pgvector HNSW index. Latency is ~50-100ms on cache miss for the embedding call, ~30ms cached. Optional filters: `canon` (`ot`, `deuterocanon`, `nt`), `bookCode` (any OSIS/USFM/full-name/alias). `urantiaParallelLimit` controls how many UB paragraphs to attach per result (0-10, default 3). Set to 0 to suppress. # Export Embeddings Source: https://urantia.dev/api-reference/endpoint/export-embeddings GET /embeddings/export Export embedding vectors for all paragraphs in a paper. The `paperId` query parameter is required. Returns JSONL (default) or JSON. Each line/item contains `{ ref, embedding }`. A typical paper is 50-200 paragraphs (~1-5 MB). # Get Audio Source: https://urantia.dev/api-reference/endpoint/get-audio GET /audio/{ref} Returns the audio file URL for a given paragraph. Accepts any paragraph reference format (globalId, standardReferenceId, or paperSectionParagraphId). # Get Bible Book Source: https://urantia.dev/api-reference/endpoint/get-bible-book GET /bible/{bookCode} Returns metadata for a single book including chapter and verse counts. Accepts OSIS codes (e.g., `Gen`), USFM codes (`GEN`), full names (`Genesis`), and common aliases (`genesis`, `1-maccabees`). # Get Bible Chapter Source: https://urantia.dev/api-reference/endpoint/get-bible-chapter GET /bible/{bookCode}/{chapter} Returns every verse in the requested chapter, ordered by verse number. Accepts OSIS, USFM, full name, or alias for `bookCode`. # Get Bible Verse Source: https://urantia.dev/api-reference/endpoint/get-bible-verse GET /bible/{bookCode}/{chapter}/{verse} Returns one verse from the World English Bible (eng-web). Accepts OSIS, USFM, full name, or alias for `bookCode`. # Get UB Paragraphs for a Bible Verse Source: https://urantia.dev/api-reference/endpoint/get-bible-verse-urantia-parallels GET /bible/{bookCode}/{chapter}/{verse}/urantia-parallels Returns the top 10 Urantia paragraphs whose embeddings are nearest to the Bible chunk containing this verse — the reverse of `?include=bibleParallels` on the UB side. Pre-computed at seed time using `text-embedding-3-large` (3072-d) cosine similarity across the entire UB corpus. Each result includes a similarity score (0..1) and rank (1..10). **These are *semantic* parallels, not curated.** Some matches will be subtly wrong — the embedding model treats surface-level vocabulary as meaning, but the UB uses standard religious terms in nonstandard ways. Treat results as starting points for further reading, not as authoritative parallels. # Format Citation Source: https://urantia.dev/api-reference/endpoint/get-citation GET /cite Generate a formatted citation for any Urantia Book passage. Supports APA, MLA, Chicago, and BibTeX styles. Reference formats accepted: - **standardReferenceId**: "196:2.1" (paperId:sectionId.paragraphId) - **globalId**: "1:196.2.1" (partId:paperId.sectionId.paragraphId) - **paperSectionParagraphId**: "196.2.1" (paperId.sectionId.paragraphId) # Get Embedding Source: https://urantia.dev/api-reference/endpoint/get-embedding GET /embeddings/{ref} Returns the embedding vector for a single paragraph. Use `?model=large` (default) for the 3072-dimensional `text-embedding-3-large` vector — the canonical embedding used by the cross-references feature. Use `?model=small` for the 1536-dimensional `text-embedding-3-small` vector that powers `/search/semantic`. The response includes `model` and `dimensions` fields so consumers can detect mismatches if they store vectors locally and compare against new responses. The `X-Embedding-Model` response header carries the same signal for byte-streaming clients. # Get Entity Source: https://urantia.dev/api-reference/endpoint/get-entity GET /entities/{id} Returns a single entity by its slug ID. # Get Entity Paragraphs Source: https://urantia.dev/api-reference/endpoint/get-entity-paragraphs GET /entities/{id}/paragraphs Returns all paragraphs that mention a given entity, ordered by position in the text. # Generate OG Image Source: https://urantia.dev/api-reference/endpoint/get-og-image GET /og/{ref} Returns a 1200×630 PNG Open Graph image for a Urantia Book passage. Designed for social media previews. Optional `?theme=` parameter: `default` (blue), `warm` (amber), `purple`, `minimal` (no glow). Images are cached permanently (`Cache-Control: immutable`). # Get Paper Source: https://urantia.dev/api-reference/endpoint/get-paper GET /papers/{id} Returns a single paper's metadata along with all its paragraphs in order. Paper IDs range from 0 (Foreword) to 196. Use `?include=entities` to include typed entity mentions in each paragraph. # Get Paper Sections Source: https://urantia.dev/api-reference/endpoint/get-paper-sections GET /papers/{id}/sections Returns all sections for a given paper, ordered by section number. # Get Paragraph Source: https://urantia.dev/api-reference/endpoint/get-paragraph GET /paragraphs/{ref} Look up a paragraph using any of three ID formats: - **globalId**: "1:2.0.1" (partId:paperId.sectionId.paragraphId) - **standardReferenceId**: "2:0.1" (paperId:sectionId.paragraphId) - **paperSectionParagraphId**: "2.0.1" (paperId.sectionId.paragraphId) The format is auto-detected from the reference string. Response includes a `navigation` envelope with the previous and next paragraph refs (within the same paper, ordered by sortId). Refs are `null` at paper boundaries. Use `?include=entities` to include typed entity mentions in the response. # Get Paragraph Context Source: https://urantia.dev/api-reference/endpoint/get-paragraph-context GET /paragraphs/{ref}/context Returns the target paragraph along with N paragraphs before and after it (ordered by sort_id). Useful for AI agents doing RAG that need surrounding context for better understanding. The `window` query parameter controls how many paragraphs before/after to include (default: 2, max: 10). Use `?include=entities` to include typed entity mentions in the response. # Get Random Paragraph Source: https://urantia.dev/api-reference/endpoint/get-random-paragraph GET /paragraphs/random Returns a single random paragraph from the Urantia Book. Useful for daily quotes or exploration. Response includes a `navigation` envelope with the previous and next paragraph refs (within the same paper, ordered by sortId). Refs are `null` at paper boundaries. Use `?include=entities` to include typed entity mentions in the response. Use `?minLength=N` and/or `?maxLength=N` to filter by character count of the paragraph text. # Get Table of Contents Source: https://urantia.dev/api-reference/endpoint/get-toc GET /toc Returns the complete table of contents with parts and their papers. This is typically the first endpoint an AI agent should call to understand the book structure. # List Bible Books Source: https://urantia.dev/api-reference/endpoint/list-bible-books GET /bible/books Returns metadata for every book in the World English Bible (eng-web), including chapter and verse counts. Books are returned in canonical ecumenical order: 39 Old Testament, 15 deuterocanonical, 27 New Testament. # List Entities Source: https://urantia.dev/api-reference/endpoint/list-entities GET /entities Browse the entity catalog (beings, places, orders, races, religions, concepts). Supports filtering by type and searching by name. # List Papers Source: https://urantia.dev/api-reference/endpoint/list-papers GET /papers Returns metadata for all papers in the Urantia Book, ordered by paper number. Use `?include=topEntities` to attach a per-paper aggregate of the most-referenced named entities (beings, places, concepts, etc.) sorted by citation frequency. # Search Source: https://urantia.dev/api-reference/endpoint/search POST /search Search the Urantia Papers using full-text search. Supports three search modes: - **and**: All words must appear (default) - **or**: Any word can appear - **phrase**: Exact phrase match Results are ranked by relevance. Optional filters: paperId, partId. # Semantic Search Source: https://urantia.dev/api-reference/endpoint/semantic-search POST /search/semantic Search the Urantia Papers using semantic similarity (vector embeddings). Returns conceptually related results even without exact keyword matches. Optional filters: paperId, partId. # API Reference - Urantia Book REST API Documentation Source: https://urantia.dev/api-reference/introduction Complete REST API reference for the Urantia Papers API. 17 endpoints, no auth required, 200 req/min, CDN cached. ## Base URL ``` https://api.urantia.dev ``` ## Authentication No authentication is required. The API is free and open. ## Rate limiting Requests are rate limited to **200 requests per minute** per IP address. Rate limit headers are included in every response: | Header | Description | | ----------------------- | ----------------------------------------------- | | `X-RateLimit-Limit` | Maximum requests per window (200) | | `X-RateLimit-Remaining` | Requests remaining in current window | | `X-RateLimit-Reset` | Unix timestamp (seconds) when the window resets | If you exceed the limit, you'll receive a `429` response. ## Error responses All errors follow [RFC 9457 Problem Details](https://www.rfc-editor.org/rfc/rfc9457) with `Content-Type: application/problem+json`: ```json theme={null} { "type": "https://urantia.dev/errors/not-found", "title": "Not Found", "status": 404, "detail": "Paragraph \"999:999.999\" not found" } ``` | Field | Description | | -------- | ---------------------------------------- | | `type` | URI identifying the error type | | `title` | Short human-readable summary | | `status` | HTTP status code | | `detail` | Specific explanation for this occurrence | ## Caching All responses include `Cache-Control` headers. Cloudflare's CDN caches responses at the edge using `s-maxage`, so repeated requests are served from the nearest edge node without hitting the origin. | Route | CDN cache | Browser cache | | -------------------------------------------------------------------------------------------- | --------------------- | ------------- | | `/toc`, `/papers/*`, `/paragraphs/:ref`, `/audio/*`, `/cite`, `/entities/*`, `/embeddings/*` | 24 hours | 1 hour | | `/og/:ref` | Permanent (immutable) | Permanent | | `/search` | 1 hour | 5 minutes | | `/paragraphs/random` | None | None | | `/`, `/docs`, `/openapi.json` | 1 hour | 5 minutes | Static content (papers, paragraphs, audio, OG images) is immutable, so it's cached aggressively. The random endpoint is never cached. ## Paragraph ID formats Many endpoints accept paragraph references in three auto-detected formats: | Format | Example | Structure | | ----------------------- | --------- | -------------------------------------- | | globalId | `1:2.0.1` | `partId:paperId.sectionId.paragraphId` | | standardReferenceId | `2:0.1` | `paperId:sectionId.paragraphId` | | paperSectionParagraphId | `2.0.1` | `paperId.sectionId.paragraphId` | ## RAG-optimized format Paragraph endpoints support `?format=rag` to return a streamlined shape for AI/RAG pipelines: ```json theme={null} { "data": { "ref": "1:0.1", "text": "plain text", "citation": "The Urantia Book, Paper 1, Section 0, Paragraph 1", "metadata": { "paperId": "1", "paperTitle": "...", "sectionId": "0", ... }, "navigation": { "prev": null, "next": "1:0.2" }, "tokenCount": 142, "entities": ["Universal Father"] } } ``` Works on `GET /paragraphs/:ref?format=rag` and `GET /paragraphs/random?format=rag`. ## Interactive docs Try endpoints directly in the [Swagger UI](https://api.urantia.dev/docs) or use the interactive examples on each endpoint page below. # Audio Narration API - Listen to the Urantia Book Source: https://urantia.dev/audio Access multi-voice TTS audio for every paragraph of the Urantia Book. 6 voices, 2 models, full coverage of 14,500+ paragraphs. Every paragraph includes an `audio` field — a nested object keyed by TTS model and voice, or `null` if no audio exists. ## Response shape ```json theme={null} { "audio": { "tts-1-hd": { "nova": { "format": "mp3", "url": "https://audio.urantia.dev/tts-1-hd-nova-3:119.1.5.mp3" }, "echo": { "format": "mp3", "url": "https://audio.urantia.dev/tts-1-hd-echo-3:119.1.5.mp3" } }, "tts-1": { "alloy": { "format": "mp3", "url": "https://audio.urantia.dev/tts-1-alloy-3:119.1.5.mp3" } } } } ``` ## Available models and voices Coverage varies per paragraph. The `tts-1-hd` / `nova` combination has full coverage across all 14,500+ paragraphs. | Model | Voices | | ---------- | --------------------------------------------------- | | `tts-1-hd` | `nova`, `echo`, `onyx`, `alloy`, `fable`, `shimmer` | | `tts-1` | `alloy` | ## Accessing audio Audio URLs are included in responses from all paragraph-returning endpoints: `/search`, `/paragraphs/*`, `/papers/:id`, and the dedicated `/audio/:ref` endpoint. ```bash theme={null} # Get just the audio info for a paragraph curl https://api.urantia.dev/audio/119:1.5 ``` All audio files are served from `audio.urantia.dev` via Cloudflare CDN. # Bible API - World English Bible (eng-web) Source: https://urantia.dev/bible Query the entire World English Bible (eng-web) including deuterocanon. 38,034 verses across 81 books, public domain, OSIS book codes, forgiving alias resolution. The API hosts the entire **World English Bible** (eng-web Classic edition) as a queryable resource. 38,034 verses across 81 books — the full ecumenical canon: 39 Old Testament + 15 deuterocanonical + 27 New Testament. Public domain text from [eBible.org](https://ebible.org/Scriptures/eng-web_usfm.zip), updated to the 2026-04-23 snapshot. The Bible API exists as the foundation for forthcoming UB ↔ Bible cross-references. It's also useful on its own for any agent or app that needs verse-level Bible access alongside the Urantia Papers. ## Why WEB Classic Three deliberate choices: * **WEB Classic, not the British or Protestant editions.** The Classic edition (`eng-web`) renders God's proper name as "Yahweh" instead of "LORD," matching the Urantia Papers' usage in Papers 96–97. * **Includes deuterocanon.** WEB's ecumenical edition has Tobit, Judith, Sirach, Wisdom, Baruch (with the Letter of Jeremiah as chapter 6), Greek Daniel (with Prayer of Azariah, Susanna, and Bel and the Dragon embedded in context), and the Maccabees series. * **Public domain.** No license restrictions — the only constraint is that the name "World English Bible" is reserved for faithful copies. ## Book codes (OSIS) We use OSIS book codes throughout: `Gen`, `Matt`, `1Macc`, `DanGr`, etc. — short, machine-friendly, standardized across CrossWire. The endpoint accepts **OSIS, USFM (`GEN`), full names (`Genesis`), and common aliases**, all case-insensitive and tolerant of hyphens/underscores: ```bash theme={null} curl https://api.urantia.dev/bible/Gen # OSIS curl https://api.urantia.dev/bible/GEN # USFM curl https://api.urantia.dev/bible/genesis # full name curl https://api.urantia.dev/bible/1-maccabees # aliased ``` Embedded books resolve to their containing canonical book. `letterofjeremiah` and `epjer` both return Baruch (since the Letter of Jeremiah is Baruch chapter 6). `susanna` and `belandthedragon` both return Greek Daniel. ## Endpoints ### List all 81 books ```bash theme={null} curl https://api.urantia.dev/bible/books ``` Returns books in canonical ecumenical order with chapter and verse counts: ```json theme={null} { "data": [ { "bookCode": "Gen", "bookName": "Genesis", "fullName": "The First Book of Moses, Commonly Called Genesis", "abbr": "Gen", "bookOrder": 1, "canon": "ot", "chapterCount": 50, "verseCount": 1533 } // ...80 more ] } ``` ### Get a single book ```bash theme={null} curl https://api.urantia.dev/bible/Matt ``` ```json theme={null} { "data": { "bookCode": "Matt", "bookName": "Matthew", "fullName": "The Gospel According to Matthew", "abbr": "Matt", "bookOrder": 55, "canon": "nt", "chapterCount": 28, "verseCount": 1071 } } ``` ### Get a chapter ```bash theme={null} curl https://api.urantia.dev/bible/Gen/1 ``` Returns all verses in the chapter, ordered by verse number. Each verse is the same shape as a single-verse response. ### Get a single verse ```bash theme={null} curl https://api.urantia.dev/bible/Gen/1/1 ``` ```json theme={null} { "data": { "id": "Gen.1.1", "reference": "Genesis 1:1", "bookCode": "Gen", "bookName": "Genesis", "bookOrder": 1, "canon": "ot", "chapter": 1, "verse": 1, "text": "In the beginning, God created the heavens and the earth.", "translation": "web" } } ``` ## Deuterocanon The deuterocanon flag is exposed as `canon: "deuterocanon"` so consumers can filter: ```bash theme={null} # Greek Daniel (Daniel + Prayer of Azariah + Susanna + Bel and the Dragon) curl https://api.urantia.dev/bible/DanGr/3/24 # 1 Maccabees curl https://api.urantia.dev/bible/1Macc/2/19 ``` WEB embeds the Prayer of Azariah, Susanna, and Bel and the Dragon inside Greek Daniel in context (because they make more sense that way — the WEB editor's deliberate choice). The Letter of Jeremiah is included as chapter 6 of Baruch. ## Errors All errors follow [RFC 9457](https://www.rfc-editor.org/rfc/rfc9457.html) Problem Details: * `404` for unknown book codes (`/bible/NotABook`) * `404` for missing chapters (`/bible/Gen/999`) * `404` for missing verses (`/bible/Gen/1/9999`) ## Source attribution * **Translation:** World English Bible (WEB) Classic edition, public domain * **Source:** [eBible.org](https://ebible.org/), package `eng-web`, snapshot date 2026-04-23 * **Editor:** Michael Paul Johnson and the WEB team ## Cross-references and search Five query surfaces span the cross-corpus space: | Use case | How to query | Backing | | -------------------------------------------------- | ------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | | User input → UB paragraphs | `POST /search/semantic` | live, `text-embedding-3-small` + HNSW | | **User input → Bible verses (with UB paragraphs)** | `POST /bible/search/semantic` | live, `text-embedding-3-small` + HNSW; UB paragraphs joined from pre-computed `bible_parallels` | | **UB paragraph → UB paragraphs** | `GET /paragraphs/{ref}?include=urantiaParallels` | pre-computed, `text-embedding-3-large` | | **UB paragraph → Bible verses** | `GET /paragraphs/{ref}?include=bibleParallels` | pre-computed, `text-embedding-3-large` | | **Bible verse → UB paragraphs** | `GET /bible/{book}/{chapter}/{verse}/urantia-parallels` | pre-computed, `text-embedding-3-large` | Live searches use 1536-d 3-small for HNSW indexability (pgvector caps HNSW at 2000-d for the `vector` type). Pre-computed cross-references use 3072-d 3-large for the +8pt empirical quality benefit on Bible-style retrieval — fine for batch compute, infeasible for live queries. You can combine includes: `?include=entities,bibleParallels,urantiaParallels` returns all three on a single round-trip. ### Bible semantic search Free-form natural-language search across all 17,641 Bible chunks. Each result includes the top-N pre-computed Urantia paragraphs related to that chunk, so a single round-trip surfaces both the Bible matches and the relevant UB content. ```bash theme={null} curl -X POST https://api.urantia.dev/bible/search/semantic \ -H "Content-Type: application/json" \ -d '{"q":"love your enemies","limit":5,"urantiaParallelLimit":3}' ``` Optional filters: * `canon`: `"ot"` | `"deuterocanon"` | `"nt"` — restrict to a part of the canon * `bookCode`: any OSIS, USFM, full name, or alias — restrict to a single book * `urantiaParallelLimit`: 0–10, default 3 — how many UB paragraphs to attach per Bible chunk (0 suppresses) Response: ```json theme={null} { "data": [ { "id": "Matt.5.43-48", "reference": "Matthew 5:43-48", "bookCode": "Matt", "bookName": "Matthew", "canon": "nt", "chapter": 5, "verseStart": 43, "verseEnd": 48, "text": "“You have heard that it was said, ‘You shall love your neighbor and hate your enemy.’ But I tell you, love your enemies, bless those who curse you...", "similarity": 0.536, "urantiaParallels": [ { "standardReferenceId": "140:3.16", "paperTitle": "The Ordination of the Twelve", "text": "...", "similarity": 0.811, "rank": 1 } ] } ], "meta": { "page": 0, "limit": 5, "total": 17641, "totalPages": 3529 } } ``` ### UB paragraph → UB paragraphs ```bash theme={null} curl 'https://api.urantia.dev/paragraphs/1:0.1?include=urantiaParallels' ``` Returns the top 10 most-similar OTHER Urantia paragraphs by cosine similarity. Self-references are filtered out. ```json theme={null} { "data": { "standardReferenceId": "1:0.1", "text": "THE Universal Father is the God of all creation...", "urantiaParallels": [ { "standardReferenceId": "1:1.1", "paperTitle": "The Universal Father", "text": "Of all the names by which God the Father is known...", "similarity": 0.832, "rank": 1, "embeddingModel": "text-embedding-3-large" } ] } } ``` ## Cross-references — UB ↔ Bible parallels Pre-computed semantic parallels between every Urantia paragraph and the Bible, in both directions. \~146,000 UB→Bible rows + \~176,000 Bible→UB rows, top-10 nearest neighbors per source. Generated with OpenAI's `text-embedding-3-large` (3072-d) and exact KNN. ### Get the Bible verses related to a UB paragraph Add `?include=bibleParallels` to any single-paragraph endpoint: ```bash theme={null} curl 'https://api.urantia.dev/paragraphs/1:0.1?include=bibleParallels' curl 'https://api.urantia.dev/paragraphs/random?include=bibleParallels' curl 'https://api.urantia.dev/paragraphs/1:0.1?include=entities,bibleParallels' curl 'https://api.urantia.dev/paragraphs/1:0.1?include=bibleParallels&format=rag' ``` The response gains a `bibleParallels` array with up to 10 entries: ```json theme={null} { "data": { "id": "1:1.0.1", "standardReferenceId": "1:0.1", "text": "THE Universal Father is the God of all creation...", "bibleParallels": [ { "chunkId": "Sir.18.1", "reference": "Sirach 18:1", "bookCode": "Sir", "chapter": 18, "verseStart": 1, "verseEnd": 1, "text": "He who lives forever created the whole universe.", "similarity": 0.488, "rank": 1, "source": "semantic", "embeddingModel": "text-embedding-3-large" } ] } } ``` ### Get the UB paragraphs related to a Bible verse (reverse query) ```bash theme={null} curl 'https://api.urantia.dev/bible/Gen/1/1/urantia-parallels' curl 'https://api.urantia.dev/bible/Matt/5/3/urantia-parallels' ``` Returns the verse, the chunk it belongs to, and up to 10 UB paragraphs ranked by semantic similarity: ```json theme={null} { "data": { "verse": { "reference": "Matthew 5:3", ... }, "chunk": { "id": "Matt.5.3", "reference": "Matthew 5:3", ... }, "paragraphs": [ { "standardReferenceId": "140:3.3", "paperTitle": "The Ordination of the Twelve", "text": "Happy are the poor in spirit, the humble, for theirs are the treasures of the kingdom of heaven...", "similarity": 0.854, "rank": 1 } ] } } ``` ### Honest framing **These are *semantic* parallels, not curated parallels.** OpenAI's embedding model treats surface-level vocabulary as meaning, but the Urantia Papers use standard religious terms ("Father", "Spirit", "Son") in nonstandard ways. Some matches will be subtly wrong. Use them as starting points for further reading and as RAG context for AI agents — not as authoritative parallels. Every row carries `similarity`, `source: "semantic"`, and `embeddingModel` so consumers can filter and audit. In practice the system surfaces some genuinely striking matches: Matt 5:3 (Beatitudes) → UB 140:3.3 ("Happy are the poor in spirit, the humble") at similarity 0.854 — the UB literally rephrases the Sermon on the Mount. ### Why no Faw's Paramony Duane Faw's 1986 *Paramony* is the gold-standard hand-curated UB↔Bible reference, but its license is uncertain and we generate strictly better RAG context with semantic search at 100% paragraph coverage (vs Faw's \~30%). Our schema reserves a `source: "paramony"` value for a future curated layer if his license ever clears. # Building a Urantia Book AI Chatbot with RAG Source: https://urantia.dev/blog/building-urantia-ai-chatbot Step-by-step tutorial for building an AI chatbot that answers questions about the Urantia Book using RAG (Retrieval-Augmented Generation) with the Urantia Papers API and OpenAI. This tutorial walks through building an AI chatbot that can answer questions about the Urantia Book with accurate citations, using the Urantia Papers API for retrieval and OpenAI for generation. ## Architecture The chatbot follows the RAG (Retrieval-Augmented Generation) pattern: 1. **User asks a question** about the Urantia Book 2. **Search** the Urantia Papers API for relevant passages 3. **Retrieve context** around the top results 4. **Generate** an answer using an LLM with the retrieved passages as context 5. **Return** the answer with source citations ## Prerequisites * Node.js 18+ or Python 3.10+ * An OpenAI API key (for the LLM) * No Urantia API key needed (it's free and open) ## Step 1: Search for Relevant Passages ```typescript theme={null} async function searchUrantia(query: string, limit = 5) { const response = await fetch('https://api.urantia.dev/search', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ q: query, type: 'and', limit }) }); const data = await response.json(); return data.results; } ``` The search endpoint supports three modes: * `and` — All words must appear (best for specific queries) * `or` — Any word can appear (best for broad exploration) * `phrase` — Exact phrase match (best for quoting) ## Step 2: Get Surrounding Context The context endpoint is critical for RAG quality. A single paragraph often lacks the full meaning — surrounding paragraphs provide narrative flow. ```typescript theme={null} async function getContext(ref: string, window = 3) { const response = await fetch( `https://api.urantia.dev/paragraphs/${ref}/context?window=${window}` ); return response.json(); } ``` The `window` parameter (1-10) controls how many paragraphs before and after the target are included. ## Step 3: Build the Prompt ```typescript theme={null} async function buildPrompt(question: string) { // Search for relevant passages const results = await searchUrantia(question, 5); // Get context for top 3 results const contexts = await Promise.all( results.slice(0, 3).map(r => getContext(r.standardReferenceId, 2)) ); // Format passages for the LLM const passages = contexts.map(ctx => { const paragraphs = ctx.paragraphs .map(p => `[${p.standardReferenceId}] ${p.text}`) .join('\n\n'); return paragraphs; }).join('\n\n---\n\n'); return `You are a knowledgeable assistant about the Urantia Book. Answer the user's question based ONLY on the provided passages. Always cite specific paper references (e.g., Paper 107:0.2) for your claims. If the passages don't contain enough information to answer, say so. ## Relevant Passages from the Urantia Book ${passages} ## User Question ${question}`; } ``` ## Step 4: Generate the Answer ```typescript theme={null} import OpenAI from 'openai'; const openai = new OpenAI(); async function askUrantia(question: string) { const prompt = await buildPrompt(question); const completion = await openai.chat.completions.create({ model: 'gpt-4o', messages: [ { role: 'system', content: prompt }, { role: 'user', content: question } ], temperature: 0.3, // Lower temperature for factual accuracy }); return completion.choices[0].message.content; } // Example usage const answer = await askUrantia('What are Thought Adjusters?'); console.log(answer); ``` ## Step 5: Add Streaming (Optional) For a better user experience, stream the response: ```typescript theme={null} async function askUrantiaStream(question: string) { const prompt = await buildPrompt(question); const stream = await openai.chat.completions.create({ model: 'gpt-4o', messages: [ { role: 'system', content: prompt }, { role: 'user', content: question } ], temperature: 0.3, stream: true, }); for await (const chunk of stream) { const content = chunk.choices[0]?.delta?.content || ''; process.stdout.write(content); } } ``` ## Tips for Better Results 1. **Use `type: "and"` for specific questions** and `type: "or"` for exploratory ones 2. **Increase the context window** for complex topics — `window=5` gives broader narrative context 3. **Search with key terms** from the Urantia Book's vocabulary (e.g., "Thought Adjuster" instead of "inner spirit") 4. **Filter by paper** when you know the relevant section — use the `paperId` parameter 5. **Lower the temperature** (0.2-0.4) for factual accuracy; raise it (0.6-0.8) for more creative explanations ## Full Example (Python) ```python theme={null} import requests import openai def search_urantia(query, limit=5): r = requests.post("https://api.urantia.dev/search", json={"q": query, "type": "and", "limit": limit}) return r.json()["results"] def get_context(ref, window=3): r = requests.get(f"https://api.urantia.dev/paragraphs/{ref}/context?window={window}") return r.json() def ask_urantia(question): results = search_urantia(question, 5) contexts = [get_context(r["standardReferenceId"], 2) for r in results[:3]] passages = "\n\n---\n\n".join([ "\n\n".join([f'[{p["standardReferenceId"]}] {p["text"]}' for p in ctx["paragraphs"]]) for ctx in contexts ]) response = openai.chat.completions.create( model="gpt-4o", messages=[{ "role": "system", "content": f"""Answer based ONLY on these Urantia Book passages. Cite references. {passages}""" }, { "role": "user", "content": question }], temperature=0.3 ) return response.choices[0].message.content print(ask_urantia("What happens after death according to the Urantia Book?")) ``` ## Next Steps * Add conversation history for multi-turn chat * Implement a web UI with React or Next.js * Add audio playback for cited passages using the `/audio` endpoint * Deploy as a Telegram or Discord bot See the full recommended workflow for AI agent integration. # Building an MCP Server for the Urantia Book Source: https://urantia.dev/blog/mcp-server-urantia-book Learn how to build a Model Context Protocol (MCP) server that gives AI assistants like Claude access to the Urantia Book through the Urantia Papers API. The Model Context Protocol (MCP) lets AI assistants access external data sources through a standardized interface. This guide shows how to build an MCP server that gives Claude (and other MCP-compatible assistants) the ability to search and read the Urantia Book. **Want instant access without building anything?** The API now includes a [built-in MCP server](/mcp-servers) with 19 tools at `api.urantia.dev/mcp`. Add it to Claude Desktop or any MCP client in one line. This tutorial is for building a **custom** MCP server with your own logic. ## What Is MCP? MCP (Model Context Protocol) is an open standard created by Anthropic that allows AI models to interact with external tools and data sources. Instead of relying solely on training data, an AI assistant with MCP access can query live APIs, read files, and perform actions. An MCP server for the Urantia Book would give any MCP-compatible AI assistant the ability to: * Search the Urantia Papers by keyword * Read specific paragraphs with context * Browse the table of contents * Access audio URLs for any paragraph ## Architecture ``` AI Assistant (Claude) <-> MCP Client <-> MCP Server <-> Urantia Papers API ``` The MCP server acts as a bridge between the AI assistant and the Urantia Papers API, translating MCP tool calls into API requests. ## Step 1: Set Up the Project ```bash theme={null} mkdir urantia-mcp-server cd urantia-mcp-server npm init -y npm install @modelcontextprotocol/sdk ``` ## Step 2: Define the Tools ```typescript theme={null} // src/index.ts import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js"; import { z } from "zod"; const API_BASE = "https://api.urantia.dev"; const server = new McpServer({ name: "urantia-papers", version: "1.0.0", }); // Tool: Search the Urantia Papers server.tool( "search", "Search the Urantia Papers for relevant passages", { query: z.string().describe("The search query"), type: z.enum(["and", "or", "phrase"]).default("and") .describe("Search mode: 'and' (all words), 'or' (any word), 'phrase' (exact)"), limit: z.number().min(1).max(50).default(10) .describe("Maximum number of results"), }, async ({ query, type, limit }) => { const response = await fetch(`${API_BASE}/search`, { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ q: query, type, limit }), }); const data = await response.json(); const text = data.results .map((r: any) => `[${r.standardReferenceId}] ${r.text}`) .join("\n\n"); return { content: [{ type: "text", text }] }; } ); // Tool: Get a paragraph with surrounding context server.tool( "get_context", "Get a Urantia Book paragraph with surrounding context", { reference: z.string().describe("Paragraph reference (e.g., '2:5.10' or '107:0.1')"), window: z.number().min(1).max(10).default(3) .describe("Number of surrounding paragraphs to include"), }, async ({ reference, window }) => { const response = await fetch( `${API_BASE}/paragraphs/${reference}/context?window=${window}` ); const data = await response.json(); const text = data.paragraphs .map((p: any) => `[${p.standardReferenceId}] ${p.text}`) .join("\n\n"); return { content: [{ type: "text", text }] }; } ); // Tool: Read a full paper server.tool( "read_paper", "Read a full paper from the Urantia Book", { paperId: z.number().min(0).max(196).describe("Paper number (0-196)"), }, async ({ paperId }) => { const response = await fetch(`${API_BASE}/papers/${paperId}`); const data = await response.json(); const text = data.paragraphs .map((p: any) => `[${p.standardReferenceId}] ${p.text}`) .join("\n\n"); return { content: [{ type: "text", text: `# Paper ${paperId}: ${data.title}\n\n${text}` }] }; } ); // Tool: Get table of contents server.tool( "get_toc", "Get the Urantia Book table of contents", {}, async () => { const response = await fetch(`${API_BASE}/toc`); const data = await response.json(); const text = data.parts .map((part: any) => `## Part ${part.id}: ${part.title}\n` + part.papers.map((p: any) => ` - Paper ${p.id}: ${p.title}`).join("\n") ) .join("\n\n"); return { content: [{ type: "text", text }] }; } ); // Start the server const transport = new StdioServerTransport(); await server.connect(transport); ``` ## Step 3: Configure for Claude Desktop Add the server to your Claude Desktop configuration (`claude_desktop_config.json`): ```json theme={null} { "mcpServers": { "urantia-papers": { "command": "npx", "args": ["tsx", "/path/to/urantia-mcp-server/src/index.ts"] } } } ``` ## Step 4: Use It Once configured, Claude can now: * **"Search the Urantia Book for passages about love"** — Uses the `search` tool * **"Read Paper 107 about Thought Adjusters"** — Uses the `read_paper` tool * **"Show me the context around passage 2:5.10"** — Uses the `get_context` tool * **"What papers are in Part IV?"** — Uses the `get_toc` tool ## Adding Resources (Optional) MCP also supports resources — static content the AI can reference. You could add the table of contents as a resource: ```typescript theme={null} server.resource( "toc", "urantia://toc", async (uri) => { const response = await fetch(`${API_BASE}/toc`); const data = await response.json(); return { contents: [{ uri: uri.href, mimeType: "application/json", text: JSON.stringify(data, null, 2), }], }; } ); ``` ## Tips * **Use `type: "and"` for specific searches** to get precise results * **The context endpoint is your best friend** — always use it after search to give the AI full narrative context * **Keep paper reads selective** — full papers can be very long; prefer search + context for most queries * **Cache responses** — the API returns `Cache-Control` headers; respect them to stay within rate limits Use the full OpenAPI spec to generate clients or explore all endpoints. # Bible API vs Quran API vs Urantia API - Religious Text APIs Compared Source: https://urantia.dev/blog/religious-text-apis-compared A practical comparison of public APIs for religious texts: Bible API, Quran API, and Urantia Papers API. Compare features, authentication, search, audio, and developer experience. Developers building applications with religious and spiritual texts now have several API options. This comparison examines the most popular public APIs for scripture and spiritual content, helping you choose the right one for your project. ## The APIs | Feature | Bible API (api.scripture.api.bible) | Quran API (alquran.cloud) | Urantia Papers API (api.urantia.dev) | | ----------------- | ----------------------------------- | ------------------------- | ------------------------------------ | | **Auth Required** | Yes (API key) | No | No | | **Rate Limit** | 5,000/day | Varies | 100/min (6,000/hr) | | **Search** | Full-text | Full-text | Full-text with modes (and/or/phrase) | | **Audio** | Some translations | Full Arabic recitations | Full TTS (6 voices, 2 models) | | **OpenAPI Spec** | Yes | No | Yes (3.1) | | **Swagger UI** | No | No | Yes | | **Translations** | 2,500+ | 100+ | English (original language) | | **Content Size** | 66 books, 31K verses | 114 surahs, 6,236 ayahs | 197 papers, 14,500+ paragraphs | ## Bible API The most mature religious text API ecosystem. [api.scripture.api.bible](https://scripture.api.bible) (by American Bible Society) provides access to thousands of Bible translations. **Strengths:** * Enormous translation library (2,500+ versions) * Well-documented with SDKs * Rich metadata (book intros, cross-references) **Limitations:** * Requires API key registration * Daily rate limits * Some translations restrict usage **Best for:** Multi-language Bible apps, translation comparison tools, church software. ## Quran API [alquran.cloud](https://alquran.cloud/api) provides free access to the Quran with extensive Arabic recitation audio. **Strengths:** * No authentication required * Excellent Arabic audio with multiple famous reciters * 100+ translations * Simple, clean API design **Limitations:** * No formal OpenAPI specification * Limited search capabilities compared to others * No interactive docs **Best for:** Islamic apps, Arabic learning tools, recitation players. ## Urantia Papers API [api.urantia.dev](https://api.urantia.dev) is the only public API for the Urantia Book, built specifically for developers and AI agents. **Strengths:** * Zero authentication — completely open * Full-text search with three modes (and, or, phrase) * AI-optimized with context window endpoint for RAG * Complete TTS audio coverage (6 voices, 14,500+ paragraphs) * OpenAPI 3.1 spec with Swagger UI * Three paragraph reference formats **Limitations:** * English only (the Urantia Book's original language) * Single text (the Urantia Book) * Newer API with smaller community **Best for:** AI/LLM applications, Urantia study tools, audio apps, spiritual content aggregators. ## Developer Experience Comparison ### Getting Started **Bible API:** Register for an API key, read documentation, include key in headers. ```bash theme={null} curl -H "api-key: YOUR_KEY" "https://api.scripture.api.bible/v1/bibles" ``` **Quran API:** No setup needed. ```bash theme={null} curl "https://api.alquran.cloud/v1/ayah/262/en.asad" ``` **Urantia API:** No setup needed. ```bash theme={null} curl https://api.urantia.dev/paragraphs/random ``` ### Search **Bible API:** ```bash theme={null} curl -H "api-key: KEY" \ "https://api.scripture.api.bible/v1/bibles/BIBLE_ID/search?query=love" ``` **Quran API:** ```bash theme={null} curl "https://api.alquran.cloud/v1/search/love/all/en" ``` **Urantia API:** ```bash theme={null} curl -X POST https://api.urantia.dev/search \ -H "Content-Type: application/json" \ -d '{"q": "love", "type": "and", "limit": 10}' ``` ### Context Retrieval (for AI/RAG) This is where the Urantia API particularly shines — it was designed with AI integration in mind: ```bash theme={null} # Get a paragraph with 3 surrounding paragraphs on each side curl "https://api.urantia.dev/paragraphs/2:5.10/context?window=3" ``` Neither the Bible API nor the Quran API offers a comparable context window feature, which is essential for RAG applications. ## Which Should You Use? * **Building a multi-faith app?** Use all three — they're complementary * **Building for a church/mosque/study group?** Use the API matching your community's text * **Building an AI/LLM application?** The Urantia API's context endpoint and search modes make it ideal for RAG; for Bible content, consider building your own context layer on top of the Bible API * **Building an audio app?** All three offer audio, but the Urantia API's TTS coverage with multiple voices is unique ## Try the Urantia Papers API ```bash theme={null} # No signup, no API key — just start curl https://api.urantia.dev/paragraphs/random ``` Make your first API call in under 60 seconds. # The Urantia Book for Beginners - A Modern Introduction Source: https://urantia.dev/blog/urantia-book-for-beginners New to the Urantia Book? This beginner's guide explains what the Urantia Book is, how it's structured, its major themes, and the best ways to start reading it in 2026. Whether you've just heard about the Urantia Book or you've been curious for a while, this guide will help you understand what it is, what it contains, and how to approach it as a new reader. ## What Is the Urantia Book? The Urantia Book is a 2,097-page text first published in 1955 by the Urantia Foundation in Chicago. It presents itself as a revelation authored by celestial beings, providing a comprehensive account of God, the universe, Earth's history, and the life of Jesus. The word "Urantia" (pronounced yoo-RAN-sha) is the name given to Earth in the book's cosmological framework. **Key facts:** * Published in 1955, authored between 1934-1935 * 197 papers (chapters) organized in four parts * Written in English, translated into 25+ languages * Not affiliated with any church or organized religion * Freely available — the text is in the public domain ## How Is It Structured? The Urantia Book is organized into four parts: ### Part I: The Central and Superuniverses (Papers 1-31) Describes God (the "Universal Father"), the structure of the universe, and the hierarchy of celestial beings. This is the most philosophically dense section. ### Part II: The Local Universe (Papers 32-56) Focuses on our local region of the cosmos (called "Nebadon"), its creator (Michael of Nebadon), and the spiritual beings that administer it. Introduces concepts like the mansion worlds and morontia life. ### Part III: The History of Urantia (Papers 57-119) A detailed history of Earth from its physical formation through the evolution of life, the development of civilization, and humanity's spiritual progress. Includes accounts of Adam and Eve, the Lucifer Rebellion, and major epochs of human history. ### Part IV: The Life and Teachings of Jesus (Papers 120-196) The longest section — a year-by-year account of Jesus' life from birth to death and beyond, including many teachings and events not recorded in the Bible. This is the most accessible section for new readers. ## Major Themes ### A Personal, Loving God The Urantia Book presents God as a personal, loving Father who indwells every human mind through a divine fragment called a "Thought Adjuster." This is not an abstract philosophical concept but a personal relationship available to everyone. ### A Vast, Organized Universe The cosmos is described as an enormous, organized structure with billions of inhabited worlds, administered by a hierarchy of spiritual beings. Earth is presented as one planet among trillions in an evolving universe. ### Survival After Death Rather than an abrupt transition to "heaven," the Urantia Book describes a gradual, progressive ascension through training worlds (the "mansion worlds") where survivors continue to learn and grow in a state called "morontia" — between material and spiritual. ### The Life of Jesus Part IV provides an unparalleled portrait of Jesus as both human and divine — a detailed, intimate account of his life from childhood through his public ministry, crucifixion, and post-resurrection appearances. ## Where to Start Reading The Urantia Book is notoriously challenging for beginners. Here are three recommended approaches: ### Approach 1: Start with Jesus (Most Popular) Begin with **Part IV (Paper 120)** — the life and teachings of Jesus. This is the most narrative and accessible section, and it provides emotional and spiritual context that makes the rest of the book more meaningful. ### Approach 2: Start with the Foreword Read the **Foreword (Paper 0)** slowly. It defines every major concept used in the book. While dense, it gives you the vocabulary to understand everything that follows. ### Approach 3: Topic-Based Pick a topic that interests you and explore it: * **Curious about the afterlife?** Read Papers 47-48 (Mansion Worlds and Morontia Life) * **Interested in God's nature?** Read Papers 1-5 * **Want to know about angels?** Read Papers 38-39 * **Fascinated by cosmology?** Read Papers 11-15 ## Reading Tools ### UrantiaHub [UrantiaHub](https://urantiahub.com) offers a modern digital reading experience with: * Reading progress tracking * Bookmarks and notes * AI-powered study assistant * Audio narration for every paragraph * Search across all papers ### The API Developers can use the [Urantia Papers API](https://api.urantia.dev) to build custom study tools: ```bash theme={null} # Get a random paragraph to sample the text curl https://api.urantia.dev/paragraphs/random # Search for any topic curl -X POST https://api.urantia.dev/search \ -H "Content-Type: application/json" \ -d '{"q": "meaning of life", "type": "and", "limit": 5}' ``` ## Common Questions **Is the Urantia Book a religion?** No. It presents spiritual teachings but does not establish a church, priesthood, or creed. Readers come from all religious backgrounds (and none). **Who wrote it?** The book claims to be authored by various celestial beings (named in each paper's attribution). The human circumstances of its production in Chicago in the 1930s-1950s are documented by the Urantia Foundation. **Is it related to Christianity?** It shares many themes with Christianity (especially regarding Jesus) but presents a significantly expanded cosmology and differs on several theological points. Many readers consider it complementary to the Bible rather than a replacement. **Is it scientifically accurate?** The book explicitly states that its scientific content reflects the knowledge of its era (1930s) and that some scientific statements would need revision as human science advances. Its primary purpose is spiritual, not scientific. **How many people read it?** Estimates suggest several hundred thousand active readers worldwide, with millions of copies in circulation. Readership has grown steadily since 1955. ## Start Your Journey Modern reading experience with study tools. Search and explore the text programmatically. # CDN & Static Assets Source: https://urantia.dev/cdn Access static JSON, audio, entities, and embeddings from cdn.urantia.dev — the Cloudflare R2-backed CDN powering the Urantia Papers API. All static data that powers the API is available directly from a public Cloudflare R2 bucket at `cdn.urantia.dev`. Audio files are served from a separate subdomain at `audio.urantia.dev`. You can use these files for offline apps, custom pipelines, or self-hosted setups. ## What's available | Asset | Format | Count | Description | | ---------------- | ------ | ------- | ----------------------------------------------------------- | | Papers | JSON | 197 | Full paper text with paragraphs, sections, and metadata | | Paper audio | MP3 | 197 | Full narration of each paper | | Paragraph audio | MP3 | 16,000+ | Individual paragraph narration across 6 voices | | Paper videos | MP4 | 197 | Full paper narration with synced text overlay (1080p) | | Video thumbnails | PNG | 197 | Paper title cards for video thumbnails | | Entities | JSON | 3,000+ | Typed entities (beings, places, concepts) with descriptions | | Entity links | JSON | 50,000+ | Paragraph-to-entity citation mappings | | Embeddings | JSON | 14,500+ | OpenAI `text-embedding-3-small` vectors (1536-dimensional) | | Audio manifest | JSON | 1 | Complete inventory mapping paragraph IDs to audio URLs | ## URL patterns ### Audio files Paragraph-level audio follows this naming pattern: ``` https://audio.urantia.dev/{model}-{voice}-{globalId}.mp3 ``` **Examples:** ```bash theme={null} # tts-1-hd model, nova voice, paragraph 0:0.0.1 (Foreword, first paragraph) https://audio.urantia.dev/tts-1-hd-nova-0:0.0.1.mp3 # tts-1-hd model, echo voice, paragraph 3:119.1.5 https://audio.urantia.dev/tts-1-hd-echo-3:119.1.5.mp3 # Whole paper audio (Paper 1) https://audio.urantia.dev/1.mp3 ``` **Available voices:** | Model | Voices | Coverage | | ---------- | --------------------------------------------------- | ------------------------ | | `tts-1-hd` | `nova`, `echo`, `onyx`, `alloy`, `fable`, `shimmer` | `nova` has full coverage | | `tts-1` | `alloy` | Partial | ### Video files Paper-level videos with narrated audio and synced text overlay: ```bash theme={null} # Paper 1 video (H.264 MP4, 1080p, 30fps) https://video.urantiahub.com/tts-1-hd-nova-1.mp4 # Paper 1 thumbnail (PNG, 1920x1080) https://video.urantiahub.com/thumbnail-1.png ``` All 197 papers have videos with the `nova` voice. Videos include animated background, paragraph text fading in/out, section title cards, and intro/outro branding. ### JSON files Paper JSON files are numbered `000.json` through `196.json`: ```bash theme={null} # Foreword https://cdn.urantia.dev/json/eng/000.json # Paper 1 — The Universal Father https://cdn.urantia.dev/json/eng/001.json # Paper index (all papers, sections, paragraphs) https://cdn.urantia.dev/json/eng/index.json # Part metadata https://cdn.urantia.dev/json/eng/1-part.json ``` ### Entities ```bash theme={null} # All entities with descriptions, aliases, and types https://cdn.urantia.dev/entities/seed-entities.json # Paragraph-to-entity citation mappings https://cdn.urantia.dev/entities/paragraph-entities.json ``` ### Embeddings ```bash theme={null} # All paragraph embeddings (OpenAI text-embedding-3-small, 1536 dimensions) https://cdn.urantia.dev/embeddings/embeddings.json ``` The embeddings file is \~455 MB. Only download it if you need vector search capabilities for a self-hosted setup. ### Audio manifest ```bash theme={null} # Complete mapping of paragraph IDs to audio CDN URLs https://cdn.urantia.dev/manifests/audio-manifest.json ``` ## Paper JSON structure Each paper file contains the full text with structured metadata: ```json theme={null} { "paperId": "1", "paperTitle": "The Universal Father", "partId": "1", "sections": [ { "sectionId": "0", "sectionTitle": "", "paragraphs": [ { "globalId": "1:1.0.1", "standardReferenceId": "1:0.1", "paperSectionParagraphId": "1.0.1", "text": "THE Universal Father is the God of all creation...", "htmlText": "

THE Universal Father is the God of all creation...

" } ] } ] } ``` ## Use cases * **Offline apps** — Download the JSON files and audio for offline reading and listening * **Custom search** — Use the embeddings to build your own vector search * **Self-hosted API** — Seed your own database from the source JSON and entities * **Data analysis** — Analyze entity relationships, citation patterns, or text embeddings * **Alternative TTS** — Use the text data to generate audio with other TTS providers For most use cases, the [API](/api-reference/introduction) is easier than working with raw files. Use the CDN when you need bulk access or offline capabilities. # Adjuster Fusion - Eternal Union with God in the Urantia Book Source: https://urantia.dev/concepts/adjuster-fusion Understand Adjuster fusion, the eternal and irreversible merging of a mortal soul with its indwelling Thought Adjuster — the climactic event of the ascension career as described in the Urantia Book. **Also known as:** Father Fusion, Adjuster-Mortal Fusion, Eternal Fusion, Divine Merger **Key papers:** Paper 107 (Origin and Nature of Thought Adjusters), Paper 110 (Relation of Adjusters to Individual Mortals), Paper 111 (The Adjuster and the Soul), Paper 112 (Personality Survival), Paper 40 (The Ascending Sons of God), Paper 47 (The Seven Mansion Worlds) ## What Is Adjuster Fusion? Adjuster fusion is the supreme event in the spiritual career of an ascending mortal — the eternal, irrevocable merging of the human immortal soul with its indwelling Thought Adjuster. In this event, the mortal identity and the divine fragment become one being forever. Fusion represents the final guarantee of eternal survival. Once fused, the mortal can never cease to exist; the union is absolute and permanent. The significance of fusion cannot be overstated. Before fusion, survival is conditional — a mortal can still theoretically reject the ascension path. After fusion, survival is unconditional and eternal. The fused being inherits the full experiential record of the mortal life combined with the divinity and pre-personal experience of the Adjuster. The result is a unique being in all the universe — a creature who is simultaneously of human origin and of divine nature. The Urantia Book teaches that fusion is the Father's technique for making finite creatures eternal. It is, in essence, God's way of permanently sharing himself with the beings of time and space. What makes fusion so remarkable is its mutual nature. The Adjuster gains something it could never have without the mortal — personality, experiential character, and the unique identity that comes from having lived a finite life. The mortal gains something equally unattainable alone — eternal divinity, access to the Father's infinite experience, and the absolute guarantee of endless survival. Each partner completes the other in a way that neither could achieve independently. ## Prerequisites for Fusion Fusion does not happen automatically. It requires that the mortal soul reach a sufficient level of spiritual development, typically described in terms of the psychic circles of human achievement. The seven psychic circles represent stages of progressive integration between the mortal mind, the soul, and the Adjuster. As a person masters these circles — moving from the seventh (outermost) to the first (innermost) — the Adjuster gains increasing ability to influence and spiritualize the human mind. Mastery of the first psychic circle represents the maximum possible attunement between the mortal mind and the indwelling Adjuster. However, circle attainment alone does not guarantee fusion — it makes fusion possible. The actual fusion event requires an additional degree of spiritual readiness and often occurs in response to a supreme decision or dedication of the will. Other prerequisites include: the full consent of the human personality, adequate development of the morontia soul, and the readiness of the Adjuster. The mortal must have genuinely and irrevocably dedicated their will to doing the will of the Father. This is not a ritual or a theological proposition — it is an actual spiritual state achieved through a lifetime (and often an afterlife) of progressive moral decisions. The Urantia Book makes clear that fusion is never forced. The Adjuster will not fuse with a personality that has not freely and wholeheartedly chosen the eternal ascension path. This respect for human free will is absolute — even God's own fragment will not override the mortal's sovereign choice. ## When and Where Fusion Occurs For the vast majority of mortals, fusion occurs on the mansion worlds — the seven transitional training spheres that encircle the local system capital of Jerusem. Most commonly, fusion takes place on the fifth or sixth mansion world, after the ascending mortal has progressed through the earlier stages of morontia education and has sufficiently developed their soul and spiritual capacity. In extremely rare cases, fusion can occur during mortal life on the planet of origin. The Urantia Book mentions a few such instances, noting that when this happens the mortal is typically translated — taken up from the planet without experiencing physical death. Such occurrences are exceedingly uncommon and are associated with extraordinary spiritual attainment. The fusion event itself is described as a flash of spiritual luminosity. The morontia companions and fellow ascenders recognize the event, and it is a time of great celebration on the mansion worlds. The fused being emerges with a new name and begins a new phase of the ascension career as a fusion personality — a being with guaranteed eternal life. For more on the mansion world experience leading up to fusion, see [Mansion Worlds](/concepts/mansion-worlds) and [Morontia](/concepts/morontia). ## Alternative Fusion Types While Adjuster fusion (also called Father fusion) is the most common path for ascending mortals, the Urantia Book describes two alternative fusion types for mortals whose circumstances prevent Adjuster fusion: **Son-fused mortals** are those who fuse with an individualized fragment of the spirit of the Creator Son. This typically occurs among mortals from worlds where Adjusters do not indwell humans, or in cases where Adjuster fusion is not possible for other reasons. Son-fused mortals achieve eternal survival but follow a different career path than Father-fused ascenders. **Spirit-fused mortals** are those who fuse with an individualized fragment of the spirit of the local universe Mother Spirit. Like Son-fused mortals, they achieve survival and serve in the local universe, though their career is typically confined to their native superuniverse rather than extending to Paradise. The existence of these alternative fusion types demonstrates that the Father's plan for mortal survival is remarkably comprehensive. No sincere soul is denied the opportunity for eternal life simply because circumstances prevent the standard path of Adjuster fusion. ## What Happens After Fusion After fusion, the ascending mortal continues the long journey through the local universe, the superuniverse, Havona, and ultimately to Paradise. The fused being now carries the combined identity of human experience and divine nature as an inseparable unity. The Adjuster contributes eternal divinity and the memory of all previous experiences; the mortal contributes personality, experiential character, and the unique identity forged through life in the flesh. Fused ascenders are eventually enrolled in the Corps of the Finality upon reaching Paradise — a body of perfected mortals destined for extraordinary service in the universes of the future. The fusion event is therefore not an ending but a new beginning — the gateway to an eternal career of ever-expanding service and discovery. The fused personality also gains access to the Adjuster's pre-mortal memory and experience. Before indwelling its mortal subject, the Adjuster may have served in other creatures or held assignments across the grand universe. All of this accumulated divine experience becomes part of the fused being's heritage. This is why the Urantia Book describes fusion as producing a being of extraordinary cosmic potential — one who combines the experiential wisdom of a finite creature with the eternal perspective of a fragment of infinity. ## Selected Quotes > "The fusion of the immortal morontia soul with the eternal and divine Adjuster is the irrevocable act of the Universal Father's embrace." — Paper 112:7.1 > "When fusion with the Adjuster has been effected, there can be no future danger to the eternal career of such a personality." — Paper 112:7.1 > "Fusion with the Adjuster signals the ascender's eternal choosing of the Father's will." — Paper 111:3.1 > "The Adjuster is the eternity possibility of man; man is the personality possibility of the Adjuster." — Paper 107:6.2 > "Mortal man earns even his status as a fusion candidate by his own faith and hope." — Paper 112:7.6 ## Related Concepts * [Thought Adjusters](/concepts/thought-adjusters) — The divine fragment that fuses with the mortal soul * [The Soul](/concepts/the-soul) — The morontia entity that fuses with the Adjuster * [Personality Survival](/concepts/personality-survival) — The broader context of mortal survival * [Mansion Worlds](/concepts/mansion-worlds) — Where fusion typically occurs * [Morontia](/concepts/morontia) — The transitional reality through which ascenders progress before fusion ## Try the API Search for paragraphs about Adjuster fusion: ```bash theme={null} curl -X POST https://api.urantia.dev/search \ -H "Content-Type: application/json" \ -d '{"q": "Adjuster fusion eternal", "type": "and", "limit": 10}' ``` Find entities related to fusion: ```bash theme={null} curl https://api.urantia.dev/entities?q=adjuster%20fusion ``` Try searching for "Adjuster fusion" on the [interactive demo](https://demo.urantia.dev). Yes, but it is extremely rare. The Urantia Book describes a very small number of cases where mortals achieved fusion with their Adjuster while still living on their planet of origin. When this occurs, the mortal is typically translated — removed from the planet without experiencing natural death. For the overwhelming majority of surviving mortals, fusion takes place on one of the mansion worlds during the morontia ascension career. Son-fused mortals are surviving humans who fuse with an individualized spirit fragment of the Creator Son rather than with a Thought Adjuster. This occurs primarily among mortals from worlds where Adjusters do not indwell humans, or in exceptional circumstances where Adjuster fusion is not possible. Son-fused mortals achieve eternal survival and serve valuable roles in the local universe, but their career path differs from the Paradise-bound trajectory of Father-fused ascenders. If a surviving mortal is unable to achieve Adjuster fusion, the Adjuster departs and the mortal may be fused instead with a fragment of the Creator Son or the Mother Spirit. If the mortal has shown sincere spiritual aspiration, survival is still possible through these alternative paths. Only those who completely and finally reject spiritual reality fail to survive. The universe plan provides multiple pathways to ensure that every sincere personality has the opportunity for eternal life. # The Grand Universe - Seven Superuniverses and Havona in the Urantia Book Source: https://urantia.dev/concepts/grand-universe Explore the grand universe described in the Urantia Book — the seven superuniverses revolving around the central universe of Havona, containing seven trillion inhabitable worlds and governed by the Ancients of Days. **Also known as:** The Seven Superuniverses, The Inhabited Universe, The Organized Creation **Key papers:** Paper 12 (The Universe of Universes), Paper 15 (The Seven Superuniverses), Paper 32 (The Evolution of Local Universes) ## What Is the Grand Universe? The grand universe is the current domain of organized, inhabited creation. It consists of the eternal central universe of Havona plus the seven evolutionary superuniverses that revolve around it. This immense structure contains approximately seven trillion inhabitable planets and represents the theater in which the drama of mortal ascension and the evolution of the Supreme Being unfolds. Unlike Havona, which has always existed in eternal perfection, the seven superuniverses are evolutionary — they are growing, developing, and progressively settling toward the goal of perfection called "light and life." The grand universe is distinguished from the even larger master universe, which includes the four uninhabited outer space levels that extend beyond the superuniverses. ## The Seven Superuniverses Each superuniverse is an enormous segment of the inhabited creation, containing roughly one trillion inhabitable worlds when fully developed. The seven superuniverses are named and numbered: 1. **Superuniverse One** through **Six** — The six superuniverses about which relatively less detail is given regarding Earth's relationship 2. **Orvonton (Superuniverse Seven)** — Our superuniverse, whose physical center roughly corresponds to the Milky Way galaxy Each superuniverse is ruled by three **Ancients of Days** — among the most powerful and perfect rulers in all creation. These beings serve as the supreme judicial and executive authority for their respective superuniverse domains. The superuniverses are further subdivided into major sectors (10 per superuniverse), minor sectors (100 per major sector), local universes (100 per minor sector), constellations, local systems, and individual inhabited worlds. ## Organization and Scale The organizational hierarchy of the grand universe follows a precise structure: * **7 superuniverses** revolving around Havona * **70 major sectors** total (10 per superuniverse) * **7,000 minor sectors** total * **700,000 local universes** total (when complete) * **\~7 trillion inhabitable worlds** across the entire grand universe This staggering scale provides the framework for the Supreme Being's evolution and for the ascending careers of countless mortal beings journeying from their birth worlds toward Paradise. ## The Supreme's Domain The grand universe holds special significance as the domain of the evolving Supreme Being. Every experience of every creature within the grand universe contributes to the growth and actualization of God the Supreme. When the grand universe eventually achieves the perfection of light and life — when all seven trillion worlds have reached their destined state — the Supreme Being will emerge as a fully actualized deity. This means the grand universe is not merely an astronomical structure but a living, growing organism of cosmic significance. The struggles, triumphs, and spiritual growth of every mortal on every world contribute to a larger divine purpose. ## Selected Quotes > "The Grand Universe is the present organized and inhabited creation. It consists of the seven superuniverses, with an aggregate evolutionary potential of around seven trillion inhabited planets." — Paper 12:1.13 > "Ten major sectors (about 1,000,000,000,000 inhabitable planets) constitute a superuniverse." — Paper 15:2.8 > "The vast Milky Way starry system represents the central nucleus of Orvonton." — Paper 15:3.1 > "Your local universe of Nebadon belongs to Orvonton, the seventh superuniverse." — Paper 15:1.5 ## Related Concepts * [Havona](/concepts/havona) — The eternal central universe at the core of the grand universe * [Paradise](/concepts/paradise) — The absolute center around which the grand universe revolves * [Nebadon](/concepts/nebadon) — Our local universe within Orvonton * [Local Universe](/concepts/local-universe) — The primary subdivision of a superuniverse * [The Supreme Being](/concepts/supreme-being) — The evolving deity whose domain is the grand universe ## Try the API Search for paragraphs about the grand universe: ```bash theme={null} curl -X POST https://api.urantia.dev/search \ -H "Content-Type: application/json" \ -d '{"q": "grand universe superuniverses", "type": "and", "limit": 10}' ``` Read Paper 15 (The Seven Superuniverses): ```bash theme={null} curl https://api.urantia.dev/papers/15 ``` The grand universe includes Havona and the seven superuniverses — the current domain of organized, inhabited creation. The master universe is far larger, encompassing the grand universe plus four enormous uninhabited outer space levels that extend beyond the superuniverses. These outer space levels are currently being physically organized but contain no known inhabited worlds yet. Earth (called Urantia in the Urantia Book) is located in the seventh superuniverse, Orvonton. More specifically, Urantia belongs to the local system of Satania, within the constellation of Norlatiadek, within the local universe of Nebadon, within the minor sector of Ensa, within the major sector of Splandon, within Orvonton. The Urantia Book states that the grand universe has an evolutionary potential of approximately seven trillion inhabitable planets. However, not all of these worlds are yet inhabited — the creation of inhabited worlds is still in progress. For context, our local universe of Nebadon currently has approximately 3.8 million inhabited worlds out of a planned 10 million. # Havona - The Eternal Central Universe in the Urantia Book Source: https://urantia.dev/concepts/havona Explore Havona, the eternal central universe of one billion perfect worlds surrounding Paradise, as described in the Urantia Book. Learn about its seven circuits, native beings, and role as the pattern universe for all creation. **Also known as:** The Central Universe, The Central Creation, The Divine Universe, The Perfect Universe **Key papers:** Paper 14 (The Central and Divine Universe), Paper 26 (Ministering Spirits of the Central Universe), Paper 12 (The Universe of Universes) ## What Is Havona? Havona is the eternal, perfect central universe that surrounds the Isle of Paradise. Unlike the seven evolutionary superuniverses of time and space, Havona was never created — it has existed from eternity as the divine pattern of absolute perfection. It consists of one billion worlds arranged in seven concentric circuits, each containing progressively fewer spheres as one moves inward toward Paradise. Havona represents a reality that mortal minds can barely comprehend: a universe of flawless perfection where sin has never existed and every being functions in complete harmony with the divine will. It stands as the eternal model and pattern for all of the universes of time and space that revolve around it. ## Structure and Geography Havona's one billion worlds are arranged in seven concentric circuits surrounding the three circuits of Paradise satellites. The innermost circuit contains the fewest worlds, and each successive outer circuit contains progressively more. These circuits are separated by enormous dark gravity bodies that stabilize the physical energies and regulate the flow of gravity. Between the outer edge of Havona and the inner borders of the seven superuniverses lie the vast dark gravity bodies — massive non-luminous spheres that serve as powerful gravity regulators. This region effectively separates the perfect central creation from the evolutionary universes of time and space. Each Havona world is unique — no two are alike. Every sphere has its own distinct landscape, arrangement, and population of native beings. This breathtaking diversity within perfection demonstrates that divine creation is not monotonous repetition but infinite creative variety. ## Havona Natives and Inhabitants Havona is home to a vast population of native beings who were never created in the traditional sense — they have simply always existed as part of the eternal universe. These Havona natives represent perfection of being without the experience of evolution. They have never known imperfection, rebellion, or sin. In addition to the native population, Havona hosts a constant stream of ascending pilgrims from the seven superuniverses — mortal survivors who have traversed their local universes and superuniverses and now enter the central universe for their final training before reaching Paradise. This creates a fascinating interaction between beings born in perfection and beings who have achieved it through evolutionary growth. ## Purpose of the Central Universe Havona serves multiple cosmic purposes simultaneously. It is the personal residential universe of the eternal Deity, the training ground for ascending creatures approaching Paradise, and the pattern creation after which all other universes are modeled. Havona provides the proof that infinite perfection is attainable and demonstrates the ultimate goal toward which all evolutionary creation is progressing. For ascending mortals, Havona represents the penultimate stage of the long Paradise journey. After traversing the mansion worlds, local universe, and superuniverse training, survivors enter the circuits of Havona to undergo their final spiritual preparation. Each of the seven circuits presents unique challenges and achievements, culminating in the pilgrim's readiness to stand before the Universal Father on Paradise. ## Selected Quotes > "THE perfect and divine universe occupies the center of all creation; it is the eternal core around which the vast creations of time and space revolve." — Paper 14:0.1 > "The billion worlds of Havona are arranged in seven concentric circuits immediately surrounding the three circuits of Paradise satellites." — Paper 14:1.9 > "Havona is so exquisitely perfect that no intellectual system of government is required. There are no regularly constituted courts, neither are there legislative assemblies." — Paper 14:3.1 > "Havona, the central universe, is not a time creation; it is an eternal existence consisting of one billion spheres of sublime perfection." — Paper 12:1.10 ## Related Concepts * [Paradise](/concepts/paradise) — The eternal Isle at the geographic center of Havona * [Grand Universe](/concepts/grand-universe) — The larger structure containing Havona and the seven superuniverses * [Mansion Worlds](/concepts/mansion-worlds) — The first training spheres on the long journey toward Havona * [Morontia](/concepts/morontia) — The transitional reality traversed before reaching Havona ## Try the API Search for paragraphs about Havona: ```bash theme={null} curl -X POST https://api.urantia.dev/search \ -H "Content-Type: application/json" \ -d '{"q": "Havona central universe", "type": "and", "limit": 10}' ``` Read Paper 14 (The Central and Divine Universe): ```bash theme={null} curl https://api.urantia.dev/papers/14 ``` Not exactly. Havona is an eternal, perfect universe of one billion physical worlds — far more vast and structured than traditional concepts of heaven. In the Urantia Book's cosmology, Havona is the penultimate destination for ascending mortals, who must traverse it before reaching Paradise itself. The traditional concept of "heaven" more closely corresponds to the mansion worlds or, at best, the local universe headquarters worlds. According to the Urantia Book, yes — but only after a very long ascension career. Mortal survivors must first traverse the mansion worlds, the local universe training spheres, and the superuniverse educational worlds before entering Havona. Once there, ascending pilgrims progress through all seven circuits in preparation for the final goal: standing in the presence of the Universal Father on Paradise. Paradise is the absolute center of all reality and the dwelling place of the eternal Deities. Havona serves a different purpose: it is the pattern universe that demonstrates how perfection manifests across a billion unique worlds. It also provides the essential training ground where ascending beings from the evolutionary universes undergo their final preparation for Paradise attainment. Havona bridges the gap between infinite deity on Paradise and the finite creatures of time and space. # Local Universe - Creation of a Creator Son in the Urantia Book Source: https://urantia.dev/concepts/local-universe Learn about local universes in the Urantia Book — the primary administrative divisions of the superuniverses, each created and ruled by a Paradise Creator Son and Creative Spirit, containing 100 constellations and 10 million inhabited worlds. **Also known as:** Creator Son's Universe, Michael's Creation, Local Creation **Key papers:** Paper 32 (The Evolution of Local Universes), Paper 33 (Administration of the Local Universe), Paper 34 (The Local Universe Mother Spirit) ## What Is a Local Universe? A local universe is the primary administrative and creative division of a superuniverse. Each local universe is the personal handiwork of a Paradise Creator Son (of the order of Michael) and a Creative Spirit companion. When complete, a local universe contains approximately 10 million inhabited worlds organized into 100 constellations, each of which contains 100 local systems of roughly 1,000 inhabited worlds each. Local universes are evolutionary — they begin as vast regions of space and energy that are gradually organized into suns, planets, and eventually life-bearing worlds. This creative process unfolds over billions of years and represents one of the most fundamental patterns of the grand universe's ongoing development. ## Creation and Organization The birth of a local universe follows a definite pattern. A Creator Son and Creative Spirit are commissioned by the Paradise Trinity and proceed to their designated space region. The Creator Son initiates the physical organization of the universe, beginning with the construction of the headquarters world (an architectural sphere) and its surrounding satellites. From this capital, the work of physical creation radiates outward. Nebulae are organized, energy is stabilized, suns are ignited, and planets begin to form. Over vast periods of time, conditions suitable for life emerge, and the Life Carriers are dispatched to initiate biological evolution on worlds deemed ready. The administrative structure of a local universe follows a precise hierarchy: * **1 local universe** = 100 constellations * **1 constellation** = 100 local systems * **1 local system** = \~1,000 inhabited worlds * **Total** = \~10,000,000 inhabited worlds per local universe ## Governance: Creator Son and Creative Spirit Every local universe is governed by a dual sovereignty — a Creator Son and a Creative Spirit working together as co-rulers. The Creator Son functions as the father-ruler and supreme authority, while the Creative Spirit serves as the mother-minister, nurturing the life and spiritual development of the universe's inhabitants. The Creator Son must earn full sovereignty through a series of seven bestowal experiences, during which he incarnates in the likeness of various orders of his created beings. Until all seven bestowals are complete, the Creator Son rules as a vicegerent of the Paradise Father. After the final bestowal, the Son becomes undisputed master of his creation. Supporting the Creator Son and Creative Spirit is an extensive administration including Gabriel (the chief executive), the Constellation Fathers (Most Highs), System Sovereigns, and vast orders of angels and ministering spirits. ## The Ascension Path Through a Local Universe For mortal survivors, the local universe provides the early stages of the Paradise ascension career. After resurrection on the mansion worlds, ascending mortals progress through the local system headquarters, the constellation training worlds, and eventually the local universe capital before advancing to the superuniverse level. This local universe career transforms morontia beings — creatures who are neither purely material nor purely spiritual — into beings ready for the higher spiritual training of the superuniverse and eventually the central universe of Havona. ## Selected Quotes > "A LOCAL universe is the handiwork of a Creator Son of the Paradise order of Michael. It comprises one hundred constellations, each embracing one hundred systems of inhabited worlds." — Paper 32:0.1 > "The Father does not otherwise personally function in the administrative affairs of a local universe. These matters are intrusted to the Creator Son and to the local universe Mother Spirit." — Paper 33:0.1 > "The Master Creator Son is the personal sovereign of his universe, but in all the details of its management the Universe Spirit is codirector with the Son." — Paper 33:3.3 > "Gabriel of Salvington is the chief executive of the universe of Nebadon and the arbiter of all executive appeals respecting its administration." — Paper 33:4.5 ## Related Concepts * [Nebadon](/concepts/nebadon) — Our local universe, created by Michael of Nebadon * [Grand Universe](/concepts/grand-universe) — The larger structure containing approximately 700,000 local universes * [Mansion Worlds](/concepts/mansion-worlds) — The first afterlife training spheres within a local universe * [Havona](/concepts/havona) — The eternal central universe that ascending mortals reach after the local universe career ## Try the API Search for paragraphs about local universes: ```bash theme={null} curl -X POST https://api.urantia.dev/search \ -H "Content-Type: application/json" \ -d '{"q": "local universe Creator Son", "type": "and", "limit": 10}' ``` Read Paper 32 (The Evolution of Local Universes): ```bash theme={null} curl https://api.urantia.dev/papers/32 ``` The Urantia Book describes a plan for approximately 700,000 local universes across the seven superuniverses (roughly 100,000 per superuniverse). Not all of these are yet fully organized or inhabited. The creation of local universes is an ongoing process that will continue until the grand universe reaches its full potential. A local universe is the personal creation of a single Creator Son and Creative Spirit, containing up to 10 million inhabited worlds. A superuniverse is vastly larger — containing approximately 100,000 local universes and roughly one trillion inhabitable worlds. Superuniverses are ruled by the Ancients of Days, while local universes are governed by their Creator Sons. No. While all local universes follow the same organizational pattern (100 constellations, 10,000 systems), each Creator Son brings unique creative expression to his domain. The physical characteristics, life forms, and even certain administrative patterns vary from one local universe to another. Each is a unique expression of its Creator Son's nature. # The Lucifer Rebellion - War in Heaven in the Urantia Book Source: https://urantia.dev/concepts/lucifer-rebellion Explore the Lucifer Rebellion as described in the Urantia Book — the cosmic insurrection that challenged the Universal Father's existence, disrupted 37 worlds in Satania, and profoundly affected our planet Urantia. **Also known as:** The Lucifer Manifesto, The Satania Rebellion, The Rebellion **Key papers:** Paper 53 (The Lucifer Rebellion), Paper 54 (Problems of the Lucifer Rebellion), Paper 66 (The Planetary Prince of Urantia), Paper 67 (The Planetary Rebellion) ## What Was the Lucifer Rebellion? The Lucifer Rebellion was a cosmic insurrection that erupted approximately 200,000 years ago in the local system of Satania — the administrative system of 619 inhabited worlds (including Earth) within the local universe of Nebadon. It was led by Lucifer, a brilliant primary Lanonandek Son who served as the System Sovereign of Satania, and his first lieutenant, Satan. Lucifer issued a formal declaration of liberty — known as the Lucifer Manifesto — on the sea of glass in the presence of the assembled hosts of Jerusem, the system capital. His charges were directed against three fundamental realities: the existence of the Universal Father, the government of the Creator Son Michael of Nebadon, and the entire plan of mortal ascension. He declared the Universal Father to be a myth invented by the Paradise Sons to maintain their rule, asserted that local systems should be self-governing, and rejected the long ascension scheme as a fraud. Satan, Lucifer's lieutenant, personally carried the rebellion to the individual worlds. A total of 37 of Satania's then-inhabited worlds were drawn into the conflict, including Urantia (Earth), where the Planetary Prince Caligastia and his deputy Daligastia embraced the rebellion's cause. The Lucifer Manifesto contained three principal charges. First, Lucifer claimed that the Universal Father did not really exist — that he was a myth created by the Paradise Sons to justify their rule. Second, he protested the government of the Creator Son Michael, calling it tyrannical and demanding self-government for local systems. Third, he attacked the universal plan of mortal ascension as an elaborate deception, claiming that the ascenders who depart for Havona never return and that the whole scheme was a fraud perpetrated by the Paradise administration. ## Key Figures **Lucifer** was the System Sovereign, a being of great brilliance and experience. The Urantia Book emphasizes that he was not inherently evil — he was a magnificent being who allowed pride and self-deception to corrupt his thinking over a long period. His fall was gradual, rooted in impatience with the universe administration and an increasing conviction in his own superiority. **Satan** served as Lucifer's chief executive. While Lucifer was the philosopher and architect of the rebellion, Satan was its active agent, personally visiting the worlds of Satania to spread the insurrection and recruit supporters. **Caligastia** was the Planetary Prince of Urantia who joined the rebellion. His defection deprived our world of its spiritual government and contributed to centuries of confusion and retarded development. Caligastia remained on Urantia as a malign but progressively weakened influence. **Daligastia** was Caligastia's deputy, who also chose the rebel cause. Together they led the majority of the Prince's staff into rebellion, shattering the headquarters culture at Dalamatia and plunging Urantia into spiritual darkness. **Van and Amadon** were the heroes of the rebellion on Urantia. Van, a member of the Prince's staff, and his loyal human associate Amadon refused to join the insurrection. They maintained their faithfulness throughout the entire struggle, providing a rallying point for the loyal minority and eventually helping prepare the way for Adam and Eve's later mission. Amadon, a mere mortal, is celebrated throughout the local universe as an example of unwavering human loyalty. His steadfastness in the face of overwhelming pressure from superhuman rebels stands as one of the finest demonstrations of the power of human faith. The rebellion also tested the seraphic hosts. Many angels fell with their leaders, while others remained loyal to Michael. The faithful seraphim who resisted the rebellion's influence are honored for their courage, as they faced arguments from beings far more powerful and experienced than themselves. ## Effects on Urantia The rebellion had devastating consequences for Earth. The planetary government was shattered, the Dalamatia headquarters was destroyed, and the progressive cultural programs of the Prince's staff collapsed. Humanity lost its superhuman teachers and the coordinating influence of a loyal planetary administration. The resulting confusion contributed to the spiritual darkness, tribal warfare, and cultural regression that characterized much of subsequent human history. The Urantia Book also teaches that the rebellion is one reason Earth is so unusual among inhabited worlds. Many of the planet's spiritual difficulties — the isolation, the confusion, the delayed spiritual progress — can be traced back to Caligastia's betrayal and the absence of a functioning planetary government for nearly 200,000 years. However, the Urantia Book also notes that the rebellion had certain unintended positive consequences. The heroism of Van and Amadon, the loyalty of certain seraphim, and the courage of mortal survivors demonstrated the power of faith even under the most extreme testing. Worlds that endure rebellion produce uniquely resilient and faith-tested ascenders, and the mortals of these troubled planets are prized throughout the universe for their hard-won spiritual fortitude. For more on Urantia's place in the system of Satania, see [Nebadon](/concepts/nebadon) and [Mansion Worlds](/concepts/mansion-worlds). ## Adjudication and Outcome The rebellion was not immediately crushed by force. The Urantia Book explains that the universe administration of Michael chose to allow the rebellion to run its full course, demonstrating the natural consequences of insurrection rather than suppressing it with power. This policy of mercy and patience is one of the great themes of Papers 53 and 54. The first judicial hearing in the case of Gabriel vs. Lucifer began on Uversa, the superuniverse capital, and the final adjudication has been long pending. The Urantia Book indicates that Lucifer and Satan were eventually detained and that the case moves toward its final resolution. Caligastia's power on Urantia has been greatly curtailed, especially since the bestowal of Michael (Jesus) and the outpouring of the Spirit of Truth at Pentecost. The mercy delay in adjudicating the rebellion is presented in Paper 54 as a profound lesson in divine justice. The universe authorities could have instantly annihilated the rebels, but doing so would have served justice without mercy. By allowing the rebellion to demonstrate its own bankruptcy, the universe ensured that all beings — including those who might someday be tempted by similar arguments — could see the full consequences of the rebel philosophy. ## The Rebellion's Lessons The Urantia Book presents the Lucifer Rebellion not merely as a historical event but as a cosmic lesson with enduring significance. It illustrates the price of pride, the danger of self-deception, and the catastrophic consequences of rejecting universe authority. At the same time, it demonstrates the resilience of faith, the power of loyalty, and the wisdom of divine patience. The rebellion tested every being in Satania and revealed the true character of each — from the highest administrators to the simplest mortals. For readers of the Urantia Book, the rebellion serves as a reminder that free will is both the greatest gift and the greatest responsibility in the universe. The ability to choose God is also the ability to reject God, and the consequences of that choice ripple across time and space. ## Selected Quotes > "Lucifer was a magnificent being, a brilliant personality; he stood next to the Most High Fathers of the constellation in the direct line of universe authority." — Paper 53:0.1 > "The Lucifer manifesto was issued at the annual conclave of Satania on the sea of glass, in the presence of the assembled hosts of Jerusem." — Paper 53:4.1 > "There was war in heaven; Michael's commander and his angels fought against the dragon (Lucifer, Satan, and the apostate princes); and the dragon and his rebellious angels were defeated." — Paper 53:5.6 > "Sin is potential in all realms where imperfect beings are endowed with the ability to choose between good and evil." — Paper 54:0.2 > "Van and Amadon... remained steadfast in their loyalty to the unseen government of the Father and his Son Michael." — Paper 67:3.1 ## Related Concepts * [Nebadon](/concepts/nebadon) — The local universe in which the rebellion occurred * [Seraphim](/concepts/seraphim) — Many seraphim were affected by the rebellion * [Mansion Worlds](/concepts/mansion-worlds) — Where rebel-world mortals continue their ascension * [Personality Survival](/concepts/personality-survival) — How the rebellion affected mortal survival prospects ## Try the API Search for paragraphs about the Lucifer Rebellion: ```bash theme={null} curl -X POST https://api.urantia.dev/search \ -H "Content-Type: application/json" \ -d '{"q": "Lucifer rebellion", "type": "and", "limit": 10}' ``` Find entities related to the rebellion: ```bash theme={null} curl https://api.urantia.dev/entities?q=lucifer ``` Try searching for "Lucifer Rebellion" on the [interactive demo](https://demo.urantia.dev). Not immediately. The Urantia Book teaches that the universe authorities chose to allow the rebellion to take its natural course rather than using force to annihilate Lucifer. He was eventually detained and faces final adjudication. The case of Gabriel vs. Lucifer has been proceeding through the superuniverse courts. The Urantia Book does not describe forced destruction but rather a judicial process that may ultimately result in the cessation of Lucifer's existence by his own continued rejection of mercy. Yes, profoundly. Urantia's Planetary Prince Caligastia and his deputy Daligastia joined the rebellion, which destroyed the planetary headquarters at Dalamatia and collapsed the civilizing programs of the Prince's staff. The result was spiritual isolation, cultural regression, and centuries of confusion. Many of Urantia's unique difficulties as an inhabited world are traced to the effects of the rebellion. The bestowal of Jesus (Michael) and the Spirit of Truth have since greatly mitigated these effects. Caligastia remained on Urantia as a deposed but still-present influence after the rebellion. His power was significantly curtailed by Michael's bestowal (the life of Jesus) and the subsequent outpouring of the Spirit of Truth at Pentecost. While he retained some ability to influence human affairs, his authority was broken. The Urantia Book indicates that his final disposition awaits the complete adjudication of the Lucifer case. # Mansion Worlds - The Seven Transition Worlds in the Urantia Book Source: https://urantia.dev/concepts/mansion-worlds Explore the seven mansion worlds described in the Urantia Book — the afterlife training spheres where mortal survivors continue their spiritual education and cosmic ascension after physical death. **Also known as:** Mansonia, Transition Worlds, Morontia Training Worlds **Key papers:** Paper 47 (The Seven Mansion Worlds), Paper 48 (The Morontia Life), Paper 46 (The Local System Headquarters) ## What Are the Mansion Worlds? The mansion worlds are seven physical spheres orbiting the transition world known as the "finaliter world" (world number one of the Jerusem satellites) in each local system. They serve as the initial afterlife training grounds for mortal survivors — the first stop on the long ascension journey from human life to Paradise. The concept draws its name from Jesus' statement, "In my Father's house are many mansions" (John 14:2). The Urantia Book presents these not as metaphorical spiritual realms but as actual physical spheres with real architecture, landscapes, and inhabitants, existing in a state of reality called **morontia** — a blend of material and spiritual. ## The Seven Worlds Each mansion world addresses specific deficiencies and provides progressive training: ### Mansion World Number One The first mansion world is primarily a **deficiency ministry** world. Much of the experience here involves completing the biological and intellectual development that was not achieved during mortal life. Survivors who arrive with significant gaps in their earthly experience spend time here making up those deficiencies. This is also where the **dispensational resurrections** occur — the mass resurrections of sleeping survivors at the end of planetary ages. The resurrection halls on mansonia number one contain the facilities for reassembling mortal survivors in their new morontia bodies. ### Mansion World Number Two The second world focuses on removing **intellectual conflict and mental disharmony**. Survivors work to resolve the contradictions and inconsistencies that characterized their mortal thinking. This is where conflicting ideas about reality, truth, and meaning are harmonized. ### Mansion World Number Three This world is devoted to **educational advancement** and cultural achievement. Survivors here begin to truly understand the morontia mota — the higher philosophy that bridges the gap between human reason and spiritual insight. Major emphasis is placed on correlating morontia mota with human logic and philosophy. ### Mansion World Number Four The fourth mansion world introduces survivors to the **social order and community life** of the morontia realm. Here, ascending mortals learn their place in the working groups and classes of morontia society. It is described as a world where you truly discover your cosmic significance. ### Mansion World Number Five This world marks the beginning of **true spiritual culture**. Survivors become genuinely interested in the universe and their cosmic destiny. Study of the constellation languages begins, and the ascending mortals develop a real enthusiasm for the Havona career ahead. ### Mansion World Number Six The sixth mansion world focuses on the **initial fusion** of the ascending personality with the indwelling Thought Adjuster. While fusion can occur on any mansion world (or even during mortal life in rare cases), the sixth world is where most survivors achieve this milestone. After fusion, survival is eternally guaranteed. ### Mansion World Number Seven The seventh and final mansion world completes the **purging of all hereditary and environmental remnants** of the mortal life. Here, the last vestiges of the "mark of the beast" — the accumulated imperfections of mortal existence — are removed. Graduates of this world are fully prepared for life on Jerusem, the local system capital. ## Life on the Mansion Worlds Life on the mansion worlds is not passive or purely contemplative. Survivors engage in: * **Education** — Formal study in schools covering universe history, cosmic citizenship, and morontia mota * **Work** — Meaningful service assignments that contribute to the functioning of these worlds * **Socialization** — Building relationships with fellow survivors from thousands of different worlds * **Recreation** — Rest, spiritual reflection, and appreciation of beauty * **Worship** — Growing communion with the Universal Father Survivors receive **morontia bodies** — physical forms that are more advanced than human bodies but not yet purely spiritual. These bodies are progressively refined as the survivor advances through each world. ## Selected Quotes > "The mortal-mind transcripts and the active creature-memory patterns as transformed from the material levels to the spiritual are the individual possession of the detached Thought Adjusters." — Paper 47:3.3 > "On mansion world number one (or another in case of advanced status) you will resume your intellectual training and spiritual development at the exact level whereon it was interrupted by death." — Paper 47:3.7 > "The mansion worlds of the local systems are so designed that living beings are progressively prepared for the eventual acceptance of the enlarged and enlarged concepts." — Paper 47:1.2 > "You should consider the statement about 'heaven' and the 'heaven of heavens.' The heaven conceived by most of your prophets was the first of the mansion worlds of the local system." — Paper 48:6.23 > "The entire ascendant plan of mortal progression is characterized by the practice of giving out to other beings new truth and experience just as soon as acquired." — Paper 30:3.9 ## Related Concepts * [Morontia](/concepts/morontia) — The state of reality between material and spiritual * [Morontia Mota](/concepts/morontia-mota) — The higher philosophy taught on the mansion worlds * [Adjuster Fusion](/concepts/adjuster-fusion) — The eternal merging typically achieved on mansion world six * [Personality Survival](/concepts/personality-survival) — How humans survive death to reach the mansion worlds * [Seraphim](/concepts/seraphim) — Guardian angels who transport survivors to the mansion worlds ## Try the API Search for paragraphs about the mansion worlds: ```bash theme={null} curl -X POST https://api.urantia.dev/search \ -H "Content-Type: application/json" \ -d '{"q": "mansion worlds", "type": "and", "limit": 10}' ``` Read Paper 47 (The Seven Mansion Worlds): ```bash theme={null} curl https://api.urantia.dev/papers/47 ``` Not exactly. The Urantia Book suggests that the traditional concept of "heaven" most closely corresponds to the first mansion world. However, the mansion worlds are training spheres — transitional environments designed for growth and education, not a final destination. The ultimate destination is Paradise, reached after a long ascension career through the local universe, superuniverse, and central universe of Havona. No. More spiritually advanced mortals may bypass the earlier mansion worlds and begin their morontia careers on higher spheres. Some may even bypass all seven mansion worlds. The starting point depends on the spiritual attainment achieved during mortal life. Those who achieve Adjuster fusion during mortal life skip the mansion worlds entirely. For most mortals, death is followed by a period of unconscious sleep until the next dispensational resurrection or special resurrection. The Urantia Book refers to this as the "sleep of survival." Some more advanced souls may be resurrected on the "third period" (third day) after death. The Thought Adjuster departs at death and returns when the survivor is reconstituted on the mansion world. # Morontia - The Reality Between Material and Spiritual in the Urantia Book Source: https://urantia.dev/concepts/morontia Learn about morontia, the unique Urantia Book concept describing the vast realm of reality between the material and spiritual worlds. Covers morontia bodies, worlds, mota, and the ascension experience. **Also known as:** Morontia realm, Morontia state, Morontia life **Key papers:** Paper 48 (The Morontia Life), Paper 42 (Energy — Mind and Matter), Paper 0 (The Foreword — definition) ## What Is Morontia? Morontia is a term unique to the Urantia Book that has no equivalent in traditional theology, philosophy, or science. It designates the vast intervening realm between the material (physical) and the spiritual — a level of reality that bridges the enormous gap between mortal human existence and pure spirit being. The word "morontia" was introduced specifically by the authors of the Urantia Book because no existing human language contained a word for this concept. It covers: * **Morontia matter** — Substances that are neither purely physical nor purely spiritual * **Morontia mind** — A form of consciousness that transcends material brain function but is not yet pure spirit mind * **Morontia bodies** — The progressive forms that ascending mortals inhabit between death and spirit attainment * **Morontia worlds** — Physical spheres (like the mansion worlds) constructed from morontia materials * **Morontia mota** — The higher philosophy that operates in morontia reality ## Why Morontia Matters The concept of morontia solves a fundamental problem in most religious cosmologies: the abrupt transition from mortal flesh to eternal spirit. Rather than an instantaneous transformation, the Urantia Book describes a gradual, progressive ascension through 570 distinct morontia levels. This means that when a mortal survives death, they don't suddenly become an angel or a ghost. Instead, they wake up on the mansion worlds in a **morontia body** — a form that is more real and substantial than a human body but not yet a spirit form. As they progress through training and experience, this body is progressively refined across 570 changes, gradually becoming more spiritual until finally achieving true spirit status. ## Morontia Bodies The morontia body is described as a real, tangible form that can interact with morontia matter. Key characteristics: * **570 progressive forms** — The morontia body undergoes 570 distinct changes from the first mansion world to spirit status * **Nourishment** — Morontia beings require sustenance, though the process is entirely different from material eating * **Senses** — Morontia beings have enhanced sensory capabilities that expand at each level * **No reproduction** — Morontia beings do not reproduce; the creation of new beings is not a feature of the morontia life * **No disease or death** — Once on the morontia level, biological decay and involuntary death cease ## Morontia Mind Just as the morontia body bridges physical and spirit form, morontia mind bridges the material mind (dependent on brain chemistry) and the spirit mind (pure cosmic consciousness). Morontia mind: * Functions without a material brain * Responds to both material and spiritual gravity circuits * Is directly accessible to the Thought Adjuster (much more so than mortal mind) * Progressively expands in capacity and cosmic awareness at each morontia level ## Morontia Mota One of the most intriguing aspects of morontia is **morontia mota** — the superphilosophical sensitivity to truth that operates on the morontia level. It represents a higher form of wisdom that human philosophy can approach but never fully achieve through material logic alone. The Urantia Book provides 28 statements of morontia mota (Paper 48:7) as examples of this higher-level thinking, including insights like: * "Few persons live up to the faith which they really have. Unreasoned fear is a master intellectual fraud practiced upon the evolving mortal soul." * "In the cosmic scheme of gaining perfection, enjoyment is just as important as accomplishment." * "The argumentative defense of any proposition is inversely proportional to the truth contained." For a deeper exploration of morontia mota, see [Morontia Mota](/concepts/morontia-mota). ## The Morontia Career The morontia career encompasses the entire journey from mortal death to the attainment of spirit status. This journey passes through several major phases: 1. **Mansion Worlds** (7 spheres) — Initial transition, deficiency repair, and early training 2. **Jerusem** — The local system capital, where morontia citizens participate in system government 3. **Constellation Worlds** — Progressive socialization and philosophical training across 771 morontia worlds 4. **Salvington** — The local universe capital, where ascending mortals meet the Creator Son (Michael) 5. **Spirit attainment** — Graduation from the morontia state to true spirit status The total morontia career typically spans an enormous amount of time (by human standards) and involves extensive education, service, worship, and progressive spiritual growth. ## Selected Quotes > "Morontia is a term designating a vast level intervening between the material and the spiritual. It may designate personal or impersonal realities, living or nonliving energies." — Paper 0:5.12 > "The morontia soul of an evolving mortal is really the son of the Adjuster action of the Universal Father and the child of the cosmic reaction of the Supreme Being, the Universal Mother." — Paper 117:6.5 > "On the mansion worlds you will resume your intellectual training and spiritual development at the exact level whereon it was interrupted by death." — Paper 47:3.7 > "The Gods cannot — at least they do not — transform a creature of gross animal nature into a perfected spirit by some mysterious act of creative magic. When the Creators desire to produce perfect beings, they do so by direct and original creation, but they never undertake to convert animal-origin and material creatures into beings of perfection in a single step." — Paper 48:0.1 > "Morontia life, extending as it does over the various stages of the local universe career, is the only possible approach by which material mortals could attain the threshold of the spirit world." — Paper 48:0.3 ## Related Concepts * [Mansion Worlds](/concepts/mansion-worlds) — The seven initial morontia training spheres * [Morontia Mota](/concepts/morontia-mota) — The higher philosophy of morontia wisdom * [Thought Adjusters](/concepts/thought-adjusters) — The divine indwelling spirit that co-creates the morontia soul * [The Soul](/concepts/the-soul) — The morontia entity that survives mortal death * [Personality Survival](/concepts/personality-survival) — How mortals transition to morontia existence ## Try the API Search for paragraphs about morontia: ```bash theme={null} curl -X POST https://api.urantia.dev/search \ -H "Content-Type: application/json" \ -d '{"q": "morontia", "type": "and", "limit": 10}' ``` Read Paper 48 (The Morontia Life): ```bash theme={null} curl https://api.urantia.dev/papers/48 ``` Not in the way most esoteric traditions describe the astral plane. Morontia is not a ghostly or ethereal dimension overlapping the physical world. The morontia worlds are actual physical spheres made of morontia materials, existing in specific locations within the local universe. Morontia reality is described as more real and substantial than material reality, not less. The Urantia Book does not give a precise duration, but it describes the morontia career as spanning the entire local universe ascension — from the mansion worlds through the system, constellation, and local universe headquarters. Given the vastness of this journey and the 570 progressive morontia forms, it likely spans an enormous period of time by human measurement. However, the experience is described as fascinating and fulfilling, not tedious. Generally no. Morontia beings exist on a different level of reality that does not normally interact with the material world. However, the Urantia Book describes some exceptions, such as the morontia Jesus who appeared to his disciples after the resurrection. These appearances required special arrangements and are not typical of normal morontia existence. # Morontia Mota - Higher Philosophy and Wisdom in the Urantia Book Source: https://urantia.dev/concepts/morontia-mota Explore morontia mota in the Urantia Book — the supermaterial philosophy that bridges human logic and spiritual insight, including the famous 28 mota statements taught on the mansion worlds. **Also known as:** Mota, Superphilosophy, Morontia Wisdom, Higher Philosophy **Key papers:** Paper 48 (The Morontia Life — Section 7: Morontia Mota), Paper 47 (The Seven Mansion Worlds) ## What Is Morontia Mota? Morontia mota is the higher philosophy or supermaterial wisdom that operates on the morontia level of reality — the transitional state between the material and the spiritual. It represents a form of insight and understanding that transcends what human philosophy can achieve through material logic alone, yet it is not purely spiritual either. Mota bridges the gap between reason and spirit, between human intellect and divine truth. The word "mota" is unique to the Urantia Book and describes a sensitivity to truth that mortal minds can approach but cannot fully grasp while still in the material body. The closest human experience to mota would be those rare moments of profound insight when truth seems self-evident — when understanding transcends mere logical reasoning and touches something deeper. ## Mota and Human Philosophy The Urantia Book draws an explicit connection between morontia mota and the highest levels of human philosophy. The lower planes of mota join directly with the best of human philosophical thought. This means that great human philosophers have, at times, approached mota-level insights through extraordinary reasoning and spiritual sensitivity. However, there is a critical limitation. Without the morontia mind — the expanded consciousness that ascending mortals receive after death — human beings cannot fully perceive mota. The material mind can approximate mota truths through philosophy, revelation, and spiritual insight, but the full experience of mota requires the enhanced sensitivity of the morontia state. This is why the Urantia Book suggests that revelation serves as a substitute for mota on the material level. Revealed truth can convey insights that the mortal mind could never discover through logic alone, effectively bridging the gap until the ascending mortal receives morontia consciousness. ## The 28 Mota Statements Paper 48 presents 28 statements of human philosophy that a morontia instructor used as illustrative parallels to help new mansion world students begin to grasp the meaning of mota. These are not mota itself but rather human philosophical equivalents used as teaching tools. Some of the most notable include: * "A display of specialized skill does not signify possession of spiritual capacity. Cleverness is not a substitute for true character." (48:7.3) * "Few persons live up to the faith which they really have. Unreasoned fear is a master intellectual fraud practiced upon the evolving mortal soul." (48:7.4) * "Difficulties may challenge mediocrity and defeat the fearful, but they only stimulate the true children of the Most Highs." (48:7.7) * "The weak indulge in resolutions, but the strong act. Life is but a day's work — do it well. The act is ours; the consequences God's." (48:7.13) * "The greatest affliction of the cosmos is never to have been afflicted. Mortals only learn wisdom by experiencing tribulation." (48:7.14) These statements demonstrate that mota encompasses practical wisdom about character, courage, faith, and the meaning of experience — not abstract metaphysics. ## Learning Mota on the Mansion Worlds Mota is formally taught beginning on the first mansion world, where the "parallel technique" is used: in one column, simple mota concepts are presented; in the opposite column, analogous statements from human philosophy are listed. This method helps new morontia students bridge their existing understanding with the higher insights now available to their expanded minds. As ascending mortals progress through the mansion worlds, they master increasingly higher levels of cosmic insight and morontia mota. By the time they graduate from the seventh mansion world, they have developed a robust capacity for mota perception that serves them throughout their ongoing ascension career. ## Selected Quotes > "The lower planes of morontia mota join directly with the higher levels of human philosophy." — Paper 48:7.1 > "Not long since, while executing an assignment on the first mansion world of Satania, I had occasion to observe this method of teaching; and though I may not undertake to present the mota content of the lesson, I am permitted to record the twenty-eight statements of human philosophy which this morontia instructor was utilizing as illustrative material." — Paper 48:7.2 > "The argumentative defense of any proposition is inversely proportional to the truth contained." — Paper 48:7.30 > "Knowledge is possessed only by sharing; it is safeguarded by wisdom and socialized by love." — Paper 48:7.28 ## Related Concepts * [Morontia](/concepts/morontia) — The transitional reality where mota operates * [Mansion Worlds](/concepts/mansion-worlds) — Where mota is first formally taught * [The Soul](/concepts/the-soul) — The morontia entity that perceives mota after death * [Personality Survival](/concepts/personality-survival) — How mortals reach the mansion worlds where mota is learned ## Try the API Search for paragraphs about morontia mota: ```bash theme={null} curl -X POST https://api.urantia.dev/search \ -H "Content-Type: application/json" \ -d '{"q": "morontia mota", "type": "and", "limit": 10}' ``` Read Paper 48 (The Morontia Life): ```bash theme={null} curl https://api.urantia.dev/papers/48 ``` The Urantia Book suggests that full mota perception requires the morontia mind, which mortals do not possess during physical life. However, human beings can approach mota-level insights through exceptional philosophical reasoning, genuine spiritual experience, and the reception of revealed truth. Revelation is described as a partial substitute for mota on the material level. No. The 28 statements presented in Paper 48:7 are explicitly described as human philosophical parallels — not the mota itself. The morontia instructor used them as illustrative material to help new mansion world students connect their existing human understanding with the higher mota concepts. The actual mota content of the lesson was not permitted to be revealed. Morontia mota operates in the realm between human philosophy and spiritual insight. While religion deals primarily with spiritual experience and faith, and philosophy deals with reason and logic, mota bridges both. It represents a kind of wisdom that is neither purely rational nor purely spiritual but integrates both into a higher form of understanding available on the morontia level. # Nebadon - Our Local Universe in the Urantia Book Source: https://urantia.dev/concepts/nebadon Learn about Nebadon, the local universe created by Michael of Nebadon (Christ Michael / Jesus of Nazareth), containing Earth and approximately 3.8 million inhabited worlds, as described in the Urantia Book. **Also known as:** Our Local Universe, The Universe of Michael, Michael's Creation **Key papers:** Paper 32 (The Evolution of Local Universes), Paper 33 (Administration of the Local Universe), Paper 57 (The Origin of Urantia) ## What Is Nebadon? Nebadon is the local universe in which Earth (called "Urantia" in the Urantia Book) resides. It was created by a Paradise Creator Son known as Michael of Nebadon, who later incarnated on Urantia as Jesus of Nazareth during his seventh and final bestowal mission. Nebadon is a relatively young local universe within the superuniverse of Orvonton, currently containing approximately 3,840,101 inhabited worlds out of a planned total of roughly 10 million. Nebadon is not merely an astronomical region — it is a purposefully organized administrative and spiritual domain, governed by its Creator Son and the local universe Mother Spirit (the Divine Minister) from the capital sphere of Salvington. ## Creation and Origin The creation of Nebadon began when Michael of Nebadon, a Paradise Creator Son, and his consort Creative Spirit were commissioned by the Paradise Trinity to organize a new local universe domain within the superuniverse of Orvonton. The first act of physical creation was the organization of the headquarters world of Salvington and its surrounding architectural satellites. From Salvington, the physical organization of Nebadon proceeded outward — nebulae were organized, suns ignited, planets formed, and the conditions for life were gradually established across thousands of local systems. This process has been ongoing for billions of years and continues today, as Nebadon is still a young and growing universe. ## Administration and Government Nebadon is governed by a sophisticated hierarchy of celestial administrators: * **Michael of Nebadon (Creator Son)** — The sovereign ruler who earned full sovereignty through his seven bestowal experiences * **The Divine Minister (Creative Spirit)** — Michael's co-ruler, the local universe Mother Spirit * **Gabriel of Salvington** — The chief executive, the Bright and Morning Star * **The Constellation Fathers (Most Highs)** — Rulers of the 100 constellations * **System Sovereigns** — Administrators of the 10,000 local systems The capital world of Salvington is an enormous architectural sphere — not a naturally evolved planet but a purposefully constructed world designed to serve as the administrative, educational, and spiritual center of the entire local universe. ## Nebadon's Place in the Cosmos Nebadon is one of approximately 100,000 local universes within the superuniverse of Orvonton. It belongs to the minor sector of Ensa and the major sector of Splandon. While Nebadon is relatively young compared to some local universes, it has a rich and eventful history, including the notable Lucifer Rebellion that affected 37 of its local systems. Earth (Urantia) holds a special place in Nebadon as the world where Michael of Nebadon completed his seventh bestowal incarnation as Jesus of Nazareth — an event that earned him unrestricted sovereignty over his entire creation. ## Selected Quotes > "Urantia belongs to a local universe whose sovereign is the God-man of Nebadon, Jesus of Nazareth and Michael of Salvington." — Paper 32:0.3 > "A LOCAL universe is the handiwork of a Creator Son of the Paradise order of Michael. It comprises one hundred constellations, each embracing one hundred systems of inhabited worlds." — Paper 32:0.1 > "The first completed act of physical creation in Nebadon consisted in the organization of the headquarters world, the architectural sphere of Salvington, with its satellites." — Paper 32:2.3 > "The organization of planetary abodes is still progressing in Nebadon, for this universe is, indeed, a young cluster in the starry and planetary realms of Orvonton." — Paper 32:2.9 ## Related Concepts * [Local Universe](/concepts/local-universe) — The organizational level Nebadon represents * [Grand Universe](/concepts/grand-universe) — The larger cosmic structure containing Nebadon * [Mansion Worlds](/concepts/mansion-worlds) — The first afterlife training spheres within Nebadon * [Lucifer Rebellion](/concepts/lucifer-rebellion) — The notable insurrection that affected part of Nebadon ## Try the API Search for paragraphs about Nebadon: ```bash theme={null} curl -X POST https://api.urantia.dev/search \ -H "Content-Type: application/json" \ -d '{"q": "Nebadon local universe", "type": "and", "limit": 10}' ``` Read Paper 32 (The Evolution of Local Universes): ```bash theme={null} curl https://api.urantia.dev/papers/32 ``` No. The Urantia Book indicates that Nebadon is a relatively small portion of the superuniverse of Orvonton, whose physical center roughly corresponds to the Milky Way. Nebadon is described as a local universe — an administrative and spiritual domain — rather than a galaxy in the astronomical sense. It contains approximately 10 million planned inhabited worlds, which is a fraction of Orvonton's total. According to the Urantia Book, Nebadon contains 3,840,101 inhabited planets at the time of the text's writing, out of a planned total of approximately 10 million. The organization of new planetary abodes is still in progress, as Nebadon is described as a young universe within Orvonton. Michael of Nebadon chose Earth (Urantia) as the world for his seventh and final bestowal — his incarnation as a mortal of the realm. Each Creator Son must complete seven bestowals in the likeness of different orders of his created beings to earn full sovereignty over his local universe. Jesus of Nazareth was Michael's mortal bestowal, and upon its completion, he became the undisputed sovereign of Nebadon. # Paradise - The Eternal Isle at the Center of All Reality Source: https://urantia.dev/concepts/paradise Understand Paradise, the motionless Eternal Isle at the geographic center of infinity, the dwelling place of the Universal Father, and the ultimate destination of all ascending mortals as described in the Urantia Book. **Also known as:** The Isle of Paradise, The Eternal Isle, The Central Isle, The Isle of Light **Key papers:** Paper 11 (The Eternal Isle of Paradise), Paper 12 (The Universe of Universes), Paper 42 (Energy—Mind and Matter) ## What Is Paradise? Paradise is the eternal, stationary Isle at the geographic center of infinity. It is the dwelling place of the Universal Father, the Eternal Son, and the Infinite Spirit — the three Persons of the Paradise Trinity. It is the largest organized body of cosmic reality in all existence, and it serves as the absolute center of material gravity for the entire master universe. Every physical force, every material energy circuit, finds its origin and anchorage in the Isle of Paradise. Paradise is unique in several ways. It is not a sphere — the Urantia Book describes it as an ellipsoid body, essentially flat, with an upper surface, a lower surface, and a periphery. It does not exist in space as we understand it; rather, space exists relative to Paradise. It is absolutely motionless. While all the physical universes revolve around it, Paradise itself does not rotate, orbit, or move in any way. It is the one truly stationary thing in the universe of universes. The Urantia Book distinguishes between "Paradise" as the personal dwelling place of Deity and "paradise" as a quality of perfection. The Eternal Isle is an actual place — the most real, the most substantial, and the most glorious location in all creation. Paradise is composed of a single form of materialization called absolutum — a material that is not found anywhere else in the wide universe. This substance is neither dead nor alive; it is the original nonspiritual expression of the First Source and Center. It is neither energy nor matter as mortals understand these terms, but something entirely unique to the Eternal Isle. ## The Three Domains of Paradise The Isle of Paradise is described as having three great domains: **Upper Paradise** is the divine residential area. Here the Universal Father, the Eternal Son, and the Infinite Spirit maintain their personal presence. It is surrounded by the three spheres of the Father, the Son, and the Spirit. Upper Paradise is the most holy place in all creation, and its beauty and grandeur exceed anything that finite minds can conceive. Ascending mortals who eventually reach Paradise will stand on this surface in the presence of God. **Peripheral Paradise** is devoted to activities that are neither strictly residential nor transport-related. It includes the landing and dispatching fields for various classes of spirit personalities and the seven trillion historic reservoirs of the Master Architects. The periphery also serves as the location for certain universe-management and energy-control functions. **Nether Paradise** is the absolute center of material gravity. All physical-energy circuits and all material-gravity forces of the master universe converge here. This domain has no known personal functions. The Urantia Book indicates that nether Paradise is the source and center of the space force that pervades all creation. It is also associated with the origin of the space zones that extend outward from the Isle. The three-domain structure of Paradise reflects the three-fold nature of reality itself: personal and spiritual (Upper), functional and administrative (Peripheral), and energetic and material (Nether). In this sense, Paradise is the physical archetype of all cosmic organization — the pattern from which all subsequent reality takes its form. ## Paradise and Space One of the most remarkable teachings about Paradise is its relationship to space. Paradise does not exist in space — rather, space approaches the inner edges of Paradise but does not touch it. Space is a bestowal of Paradise, and the zones of quiescent mid-space that separate the successive space levels appear to originate from the periphery of the Isle. The universe is not infinite, but it is surrounded by what the Urantia Book calls unpervaded space. Paradise is the nucleus of this vast cosmic arrangement, the eternal anchor point from which all reality extends outward through the central universe of Havona, the seven superuniverses, and the four outer space levels. This relationship between Paradise and space is one of the most conceptually challenging teachings in the Urantia Book. Space is real — it has motion and contains energy — but Paradise transcends space entirely. The Isle serves as the motionless reference point for all motion and the non-spatial center of all spatial reality. Time, as mortals experience it, also finds its origin in the relationship between Paradise and the moving universes of space. For more on the cosmic structure surrounding Paradise, see [Havona](/concepts/havona) and [Grand Universe](/concepts/grand-universe). ## The Destination of Ascenders For ascending mortals — humans who survive death and traverse the mansion worlds, the local universe, the superuniverse, and the billion worlds of Havona — Paradise is the ultimate geographic destination. To reach Paradise and stand in the presence of the Universal Father is the supreme achievement of the ascending career. Upon arrival, ascenders are embraced by the Father, receive residential status on Paradise, and are enrolled in the Corps of the Finality to begin an eternal career of universe service. The journey from the worlds of time and space to Paradise is the longest and most transformative adventure available to any created being. It is, in essence, the entire purpose of mortal existence — to begin as a finite creature on an evolutionary world and ascend to the very center of all things. The Father's command to the creatures of time — "Be you perfect, even as I am perfect" — finds its geographic fulfillment in the Paradise arrival. The mortal who began life as a helpless infant on an evolutionary world finally stands on the eternal shores of the Isle of Light, perfected in purpose, purified in character, and ready to serve the universes of eternity as a member of the Corps of the Finality. ## Paradise Gravity Paradise serves as the absolute center of all gravity in the master universe. The Urantia Book describes four gravity circuits: personality gravity (centered in the Father), spirit gravity (centered in the Eternal Son), mind gravity (centered in the Infinite Spirit), and material gravity (centered in nether Paradise). This fourfold gravity system anchors all reality to the Eternal Isle, making Paradise not only the geographic center of the cosmos but also its functional and energetic nucleus. Material gravity is absolute and inescapable — every physical particle in the universe is held in the gravity grasp of nether Paradise. This is what gives the cosmos its coherence and structure. Without the gravity anchor of Paradise, the physical universe would fly apart into chaos. ## Selected Quotes > "Paradise is the eternal center of the universe of universes and the abiding place of the Universal Father, the Eternal Son, the Infinite Spirit, and their divine co-ordinates and associates." — Paper 11:0.1 > "Paradise is the absolute of patterns; Havona is an exhibit of these potentials in actuality." — Paper 11:9.5 > "The Isle of Paradise has a universe location but no position in space." — Paper 11:2.1 > "Paradise is not spherical. It is definitely ellipsoid, being one-sixth longer in the north-south diameter than in the east-west diameter." — Paper 11:2.2 > "Paradise is the geographic center of infinity." — Paper 11:9.2 ## Related Concepts * [Havona](/concepts/havona) — The billion perfect worlds surrounding Paradise * [Grand Universe](/concepts/grand-universe) — The cosmic structure centered on Paradise * [The Supreme Being](/concepts/the-supreme-being) — The evolving experiential Deity whose emergence is connected to the completion of the grand universe * [Thought Adjusters](/concepts/thought-adjusters) — Fragments of the Father who originate from Paradise ## Try the API Search for paragraphs about Paradise: ```bash theme={null} curl -X POST https://api.urantia.dev/search \ -H "Content-Type: application/json" \ -d '{"q": "Isle of Paradise eternal", "type": "and", "limit": 10}' ``` Read Paper 11 (The Eternal Isle of Paradise): ```bash theme={null} curl https://api.urantia.dev/papers/11 ``` Find entities related to Paradise: ```bash theme={null} curl https://api.urantia.dev/entities?q=paradise ``` Try searching for "Paradise" on the [interactive demo](https://demo.urantia.dev). No. One of the most distinctive teachings of the Urantia Book is that Paradise does not exist in space. Space exists relative to Paradise and approaches the inner edges of the Isle but does not touch it. Paradise has a universe location but no position in space as mortals understand it. This makes Paradise fundamentally different from every other material body in the universe. Yes. The entire ascension plan is designed to bring surviving mortals from the worlds of time and space to Paradise. After traversing the mansion worlds, the local universe, the superuniverse, and the billion worlds of Havona, ascending mortals arrive on the shores of Paradise, are embraced by the Universal Father, and are enrolled in the Corps of the Finality. This journey takes an immense amount of time but is the destiny of every surviving mortal. Paradise is the central stationary Isle — the dwelling place of the Trinity and the gravity center of the master universe. Havona is the central universe of one billion perfect worlds that circle Paradise in seven concentric circuits. Havona is in space and moves around Paradise; Paradise itself is motionless and not in space. Havona is the pattern creation; Paradise is the absolute source. Ascending mortals traverse Havona before reaching Paradise. # Personality Survival - Life After Death in the Urantia Book Source: https://urantia.dev/concepts/personality-survival Learn about personality survival in the Urantia Book — how mortal humans survive physical death through the preservation of personality, soul, and identity, and continue their eternal ascension on the mansion worlds. **Also known as:** Survival of Death, Mortal Survival, Eternal Life, Continuing Existence **Key papers:** Paper 112 (Personality Survival), Paper 47 (The Seven Mansion Worlds), Paper 49 (The Inhabited Worlds) ## What Is Personality Survival? Personality survival is the Urantia Book's comprehensive framework for understanding what happens after physical death. It describes how the human personality, morontia soul, and identity patterns are preserved and reconstituted on the mansion worlds through the cooperative ministry of the Thought Adjuster, seraphic guardians, and the universe resurrection mechanisms. Unlike many religious traditions that present afterlife as automatic or dependent solely on belief, the Urantia Book describes survival as fundamentally choice-dependent. The single essential requirement is the sincere desire to know God and become like him — or, stated differently, the willingness to choose the divine will over purely selfish existence. ## The Three Essentials of Survival At physical death, three distinct elements are preserved for the eventual reconstitution of the surviving personality: 1. **Personality** — The unique pattern of identity bestowed by the Universal Father. Personality is changeless and survives death inherently; it is the unchanging core of individual identity. 2. **The Morontia Soul** — The jointly created entity produced by the Thought Adjuster and the mortal mind during earthly life. The soul represents all spiritual values, meanings, and genuine character achievements of the mortal life. 3. **The Thought Adjuster** — The indwelling spirit fragment of God that departs at death carrying the complete memory transcript and identity patterns of the mortal career. At resurrection, these three elements are reunited. The Adjuster returns with the memory patterns, the soul provides the vehicle of continuing identity, and personality provides the unchanging core that ties everything together. ## The Conditions for Survival The Urantia Book is remarkably generous regarding who survives death. Survival does not require perfection, great intellectual achievement, or even explicit religious belief. The essential condition is moral and spiritual: has the individual made — or would they make — the sincere choice to seek God and pursue goodness? Those who fail to survive are described not as beings who are punished but as beings who have utterly and finally refused the divine invitation. The Urantia Book refers to this as the choice of "cosmic insanity" — the complete and irrevocable rejection of survival values. For the vast majority of human beings, survival is presented as the normal and expected outcome. Even those who die without having made a final decision about survival are given further opportunity. The Urantia Book describes how mortals who have not made a definitive choice are resurrected on the mansion worlds and given every possible opportunity to choose the ascension path. ## What Happens at Death The process of death and resurrection unfolds in a specific sequence: 1. **Physical death** — The material body ceases to function 2. **Adjuster departure** — The Thought Adjuster departs, carrying the memory transcript of the mortal career to Divinington 3. **Soul custody** — The morontia soul is held in trust by the seraphic guardian (or, for group resurrections, is preserved until the dispensational call) 4. **Sleep of survival** — For most mortals, an unconscious period elapses between death and resurrection 5. **Resurrection** — On the mansion worlds, the Adjuster returns, the soul is restored, a new morontia body is provided, and personality reassembles the identity The surviving mortal awakens on the mansion world as a morontia being — continuing their intellectual and spiritual development at the exact level where death interrupted it. ## Selected Quotes > "Personality may survive mortal death with identity in the surviving soul. The Adjuster and the personality are changeless; the relationship between them (in the soul) is nothing but change, continuing evolution." — Paper 112:0.15 > "There is something real, something of human evolution, something additional to the Mystery Monitor, which survives death. This newly appearing entity is the soul." — Paper 112:5.12 > "The Thought Adjuster, with the memory transcription of the mortal career, proceeds to Divinington; and there also remains...the immortal morontia soul of the deceased human." — Paper 112:3.5 > "The Supreme Being did not create man, but man was literally created out of, his very life was derived from, the potentiality of the Supreme." — Paper 117:3.12 ## Related Concepts * [Thought Adjusters](/concepts/thought-adjusters) — The indwelling spirit that carries memory and identity after death * [The Soul](/concepts/the-soul) — The morontia entity that is the actual surviving vehicle * [Mansion Worlds](/concepts/mansion-worlds) — Where mortal survivors are resurrected and continue their ascension * [Adjuster Fusion](/concepts/adjuster-fusion) — The eternal merging that guarantees survival permanently ## Try the API Search for paragraphs about personality survival: ```bash theme={null} curl -X POST https://api.urantia.dev/search \ -H "Content-Type: application/json" \ -d '{"q": "personality survival death", "type": "and", "limit": 10}' ``` Read Paper 112 (Personality Survival): ```bash theme={null} curl https://api.urantia.dev/papers/112 ``` No. The Urantia Book teaches that survival is a choice. However, it is remarkably generous — the sincere desire to know God and pursue goodness is sufficient. Those who have not made a final decision are given further opportunity on the mansion worlds. Only those who completely and irrevocably reject all survival values fail to survive, and this is described as an extremely rare outcome. The Urantia Book indicates that survival depends on the sincere response to truth, beauty, and goodness — not on specific theological knowledge. Those who respond positively to the spiritual leadings of their Thought Adjuster, even without conscious knowledge of God, are candidates for survival. The adjudication of survival is described as merciful and just, taking full account of each individual's circumstances. No. The Urantia Book explicitly rejects reincarnation. Personality survival involves the continuation of the same unique identity — the same personality, soul, and memory patterns — on the mansion worlds after a single mortal life. There is no return to another physical body on Earth. The ascension career moves forward through progressively higher levels of reality, never backward. # Seraphim - Guardian Angels in the Urantia Book Source: https://urantia.dev/concepts/seraphim Learn about seraphim, the guardian angels described in the Urantia Book who minister to mortal beings, guide human civilization, and transport surviving souls to the mansion worlds after death. **Also known as:** Angels, Guardian Angels, Seraphic Guardians, Ministering Spirits **Key papers:** Paper 38 (Ministering Spirits of the Local Universe), Paper 39 (The Seraphic Hosts), Paper 113 (Seraphic Guardians of Destiny), Paper 25 (The Messenger Hosts of Space) ## What Are Seraphim? Seraphim are the angels of the Urantia Book — personal spirit beings created by the local universe Mother Spirit (the Creative Spirit) in collaboration with the Creator Son. They are the most numerous order of spirit beings in a local universe. In Nebadon, our local universe, there are over 71 billion seraphim. They serve in a vast range of roles — from planetary guardians to celestial administrators — but they are best known for their intimate ministry to mortal beings as guardian angels. Unlike Thought Adjusters, which indwell the human mind from within, seraphim minister to human beings from the outside. They work in the mortal's environment, influencing circumstances, guiding situations, and fostering conditions favorable to spiritual growth. They cannot violate human free will, but they actively seek to promote truth, beauty, and goodness in the lives of their mortal charges. Seraphim are created as adult beings — they do not grow from infancy. They are created in unit formations of 41,472, and they always function in pairs. A seraphic pair consists of a complemental angel and a supplement, and this paired arrangement persists through all their service assignments. While seraphim are spirit beings, they are not omniscient or all-powerful. They have definite limitations and must gain experience through service just as mortals grow through living. An angel's first assignments may be relatively simple, and they advance to more demanding roles as their experience and capability increase. This experiential nature makes seraphim far more relatable than the static angel concepts of traditional theology. ## Orders and Functions The Urantia Book describes an elaborate hierarchy of seraphic orders organized by function and assignment: **Supreme Seraphim** serve on the capital worlds of the superuniverses and function in roles connected to the broad administration of the superuniverse government. They include the Son-Spirit ministers, the court advisers, the universe orientators, and the recorders. **Superior Seraphim** serve in the local universe headquarters and constellation capitals. They function as intelligence corps, angels of mercy, ministry assistants to the constellation governments, and educators on the training worlds. **Supervisor Seraphim** originate on the constellation headquarters and serve primarily on the system capitals. They include the assistant teachers, the transporters, and the recorders who operate at the system level. **Planetary Seraphim** are assigned to the inhabited worlds and include the guardian angels who minister directly to individual mortals. They serve as epochal angels, religious guardians, angels of the nation, angels of the races, angels of progress, angels of the home, angels of industry, and angels of diversion. These specialized planetary assignments reveal the extraordinary breadth of seraphic involvement in human civilization. Angels are not merely personal guardians — they are actively involved in fostering the intellectual, social, ethical, and spiritual progress of entire civilizations. The Urantia Book describes the master seraphim of planetary supervision as working behind the scenes to advance human institutions, promote interracial harmony, and guide the evolution of religious thought. ## Guardian Seraphim of Destiny The most personally relevant seraphic ministry for humans is that of the guardian seraphim — the guardian angels of destiny described in detail in Paper 113. These angels are personally assigned to individual mortals based on the person's spiritual attainment, the importance of their earthly role, and the level of their cosmic circle achievement. When a human being achieves the third cosmic circle or is selected for special service, they receive a personal pair of guardian seraphim dedicated exclusively to their care. Before that point, a pair of seraphim may serve as group guardians watching over many mortals simultaneously. Guardian seraphim do not enter the human mind. They work in the external environment, manipulating circumstances where possible and standing ready to influence situations in ways that promote spiritual growth. They keep records of the mortal's life, maintain the identity custody of the soul during the sleep of death, and serve as indispensable partners in the survival process. The relationship between a guardian seraphim and their mortal charge is one of the most touching partnerships described in the Urantia Book. The angel becomes intimately familiar with their subject's character, struggles, and aspirations. This partnership does not end at death — the guardian seraphim accompanies the mortal throughout the mansion world career and beyond, often serving as a faithful companion long into the ascension journey. For more on what happens after death and the role of seraphim in survival, see [The Soul](/concepts/the-soul) and [Personality Survival](/concepts/personality-survival). ## Seraphic Transport After Death One of the most distinctive roles of seraphim is the transport of surviving mortal souls after physical death. When a mortal dies, the guardian seraphim becomes the custodian of the surviving identity — the morontia soul, the identity patterns, and the memory records of the mortal career. The Thought Adjuster departs independently to Divinington, and the seraphim carries the soul to the mansion worlds for repersonalization. This seraphic transport function is essential to the survival process. Without the guardian seraphim's custody, the morontia soul could not be reassembled and repersonalized on the mansion worlds. The angel literally preserves the human identity through the transition of death and reconstitution on the resurrection halls of the first mansion world. The destiny of guardian seraphim is also remarkable. Through their faithful service to mortals, seraphim themselves are progressing toward their own spiritual attainment. Guardian seraphim who faithfully serve their mortal charges through the ascension career may eventually pass through the seraphic circles of achievement and attain Paradise themselves. In this way, the guardian relationship benefits both angel and mortal — each serving the other's eternal advancement. ## Seraphim and the Morontia Life The ministry of seraphim does not end with mortal death. On the mansion worlds and throughout the morontia career, seraphim continue to serve ascenders in various capacities. Morontia companions, transition ministers, and education supervisors are all seraphic or closely related orders. The continuity of angelic ministry from the material world through the morontia realms provides ascending mortals with a stable, familiar source of guidance during the enormous transitions of the afterlife. As mortals advance through the local universe, superuniverse, and Havona, they encounter ever-higher orders of angelic and spirit ministers. But the foundation of this ministry — the intimate, personal care of guardian seraphim — begins on the evolutionary worlds and sets the pattern for all subsequent celestial relationships. ## Selected Quotes > "Angels do not invade the sanctity of the human mind; they do not manipulate the will of mortals; neither do they directly contact with the indwelling Adjusters." — Paper 113:5.1 > "Seraphim are the traditional angels of heaven; they are the ministering spirits who live so near you and do so much for you." — Paper 38:0.1 > "The guardian seraphim is the custodial trustee of the survival values of mortal man's slumbering soul." — Paper 113:3.4 > "Seraphim function as teachers of men by guiding the footsteps of the human personality into paths of new and progressive experiences." — Paper 113:4.2 > "When a human being finishes the mortal career, the attending seraphim is the curator-guardian of the identity patterns, soul realities, and memory records." — Paper 113:6.1 ## Related Concepts * [Thought Adjusters](/concepts/thought-adjusters) — The divine indwelling spirit that works alongside seraphim * [The Soul](/concepts/the-soul) — The morontia entity that seraphim safeguard after death * [Mansion Worlds](/concepts/mansion-worlds) — Where seraphim transport surviving mortals * [Morontia](/concepts/morontia) — The intermediate reality through which seraphim guide ascenders ## Try the API Search for paragraphs about seraphim: ```bash theme={null} curl -X POST https://api.urantia.dev/search \ -H "Content-Type: application/json" \ -d '{"q": "seraphim guardian angels", "type": "and", "limit": 10}' ``` Find entities related to seraphim: ```bash theme={null} curl https://api.urantia.dev/entities?q=seraphim ``` Try searching for "seraphim" on the [interactive demo](https://demo.urantia.dev). Not in the exclusive sense. The Urantia Book teaches that personal guardian seraphim are assigned to individuals who have achieved the third psychic circle or who have been selected for special service. Other mortals are served by group guardians — seraphic pairs who minister to many individuals simultaneously. After the outpouring of the Spirit of Truth, guardian seraphim became more widely available, but personal assignment still depends on spiritual attainment. Seraphim are spirit beings and do not normally have a form visible to mortals. The Urantia Book indicates that they possess a definite form that is real in the spirit world. They are described as being distinct and non-imaginary, standing in sharp contrast to human conceptions of transparent, ethereal beings. On morontia and spirit worlds, they are fully visible to the beings of those realms. Yes. The Urantia Book describes seraphim as having genuine emotional responses. They experience affection for their mortal charges, they feel disappointment when their subjects fail to progress, and they are deeply devoted to the well-being of the humans they serve. Guardian seraphim develop a deep personal bond with their mortal partners, and this relationship can persist long into the ascension career. # The Supreme Being - God the Supreme in the Urantia Book Source: https://urantia.dev/concepts/supreme-being Understand the Supreme Being (God the Supreme) in the Urantia Book — the evolving experiential deity of time and space who grows through the experiences of all creatures in the grand universe. **Also known as:** God the Supreme, The Almighty Supreme, The Supreme, The Finite God **Key papers:** Paper 115 (The Supreme Being), Paper 116 (The Almighty Supreme), Paper 117 (God the Supreme) ## What Is the Supreme Being? The Supreme Being is one of the most distinctive and original concepts in the Urantia Book. Unlike the eternal, unchanging Universal Father, the Supreme Being is an *experiential* deity — a God who is growing, evolving, and actualizing through the collective experiences of every creature in the grand universe. The Supreme is not yet complete; he is in the process of becoming, and every mortal's growth, every creature's experience, contributes directly to his emergence. This concept fundamentally transforms the relationship between creatures and deity: you are not merely living *under* God but actively participating *in* the growth of God the Supreme. Your struggles, your moral choices, your spiritual progress — all of these contribute to the actualization of a deity who encompasses and unifies all finite reality. ## Existential vs. Experiential Deity The Urantia Book distinguishes between two fundamental types of deity reality: * **Existential deity** — The Paradise Trinity (the Universal Father, Eternal Son, and Infinite Spirit) who are eternal, infinite, and complete from all eternity. They never change or grow because they are already perfect and infinite. * **Experiential deity** — The Supreme Being, who is actualizing through the experiences of finite creatures in time and space. The Supreme grows as the universes evolve. This distinction explains why the universe of time and space exists at all. The experiential universes provide the arena in which a new kind of deity reality can emerge — one born of actual experience rather than eternal existence. ## The Two Phases of the Supreme The Supreme Being has two aspects that are progressively unifying: 1. **God the Supreme** — The spirit person of the Supreme, residing in Havona, who derives personality and spirit nature from the Paradise Trinity 2. **The Almighty Supreme** — The power aspect of the Supreme, which is evolving in the grand universe through the actions of the Creator Sons, Ancients of Days, and Master Spirits The full emergence of the Supreme Being will occur when these two phases completely unify — when the spirit person of God the Supreme and the power sovereignty of the Almighty Supreme achieve perfect synthesis. This will happen when all seven superuniverses are settled in light and life. ## Every Creature Contributes Perhaps the most profound implication of the Supreme Being concept is that every creature's life matters cosmically. When a mortal chooses to do the will of God, that choice creates a new experiential reality that becomes part of the Supreme. When a being grows in wisdom, love, or service, the Supreme grows. When an entire world achieves spiritual maturity, the Supreme advances toward completion. This means the universe is not a static stage on which creatures merely perform — it is a living, growing organism in which every part contributes to the whole. The Supreme Being is, in a real sense, the sum total of all finite experience unified in deity. ## Selected Quotes > "The Supreme is the beauty of physical harmony, the truth of intellectual meaning, and the goodness of spiritual value." — Paper 117:1.1 > "The Supreme is God-in-time; his is the secret of creature growth in time; his also is the conquest of the incomplete present and the consummation of the perfecting future." — Paper 117:2.1 > "With God the Supreme, achievement is the prerequisite to status — one must do something as well as be something." — Paper 115:0.1 > "When a human being chooses eternal survival, he is cocreating destiny; and in the life of this ascending mortal the finite God finds an increased measure of personality self-realization." — Paper 117:4.2 > "The Almighty Supreme is a living and evolving Deity of power and personality. His present domain, the grand universe, is also a growing realm of power and personality." — Paper 116:0.4 ## Related Concepts * [Grand Universe](/concepts/grand-universe) — The domain of the Supreme Being's evolution * [Paradise](/concepts/paradise) — Where the existential deities eternally reside * [Havona](/concepts/havona) — Where God the Supreme's spirit person resides * [Personality Survival](/concepts/personality-survival) — How mortal choices contribute to the Supreme ## Try the API Search for paragraphs about the Supreme Being: ```bash theme={null} curl -X POST https://api.urantia.dev/search \ -H "Content-Type: application/json" \ -d '{"q": "Supreme Being experiential", "type": "and", "limit": 10}' ``` Read Paper 117 (God the Supreme): ```bash theme={null} curl https://api.urantia.dev/papers/117 ``` The Supreme Being is one expression of deity but is not identical to the Universal Father. The Universal Father is an eternal, existential deity who has always existed in infinite perfection. The Supreme Being is an experiential deity who is evolving through the experiences of all creatures in the grand universe. The Supreme derives spirit and personality from the Paradise Trinity but derives power from the achievements of the creators and creatures of time and space. According to the Urantia Book, when all seven superuniverses achieve the perfection of light and life, the Supreme Being will emerge as a fully actualized deity — accessible to all creatures and exercising complete sovereignty over the grand universe. This will mark the close of the present universe age and the beginning of a new era of cosmic growth related to the outer space levels. Every genuine moral choice, every act of love, every experience of spiritual growth creates a new experiential reality that becomes part of the evolving Supreme Being. The Urantia Book teaches that no true experience is ever lost — it is preserved in the growing reality of the Supreme. This means that even the smallest sincere moral decision on the most remote inhabited world has cosmic significance. # The Soul - Morontia Identity in the Urantia Book Source: https://urantia.dev/concepts/the-soul Understand the soul as described in the Urantia Book — the morontia entity co-created by the Thought Adjuster and human moral choices that survives physical death and is reconstituted on the mansion worlds. **Also known as:** The Morontia Soul, The Evolving Soul, The Immortal Soul **Key papers:** Paper 111 (The Adjuster and the Soul), Paper 112 (Personality Survival), Paper 36 (The Life Carriers), Paper 110 (Relation of Adjusters to Individual Mortals) ## What Is the Soul? The soul, as described in the Urantia Book, is a morontia entity that is jointly created by the indwelling Thought Adjuster and the human mind through moral decisions and spiritual choices. It is neither purely material nor purely spiritual but occupies the morontia realm — an intermediate state of reality between the physical and the spiritual. The soul is the vehicle of survival, the identity that persists after physical death and is reconstituted on the mansion worlds. Unlike many traditional religious concepts that treat the soul as something humans are born with, the Urantia Book teaches that the soul is an experiential acquirement. It does not exist at birth. It comes into being when the Thought Adjuster arrives to indwell the human mind — typically at the moment of a child's first moral decision — and begins its joint creative work with the human will. Every subsequent moral choice, every sincere spiritual aspiration, contributes to the growth and substance of this emerging soul. The soul is sometimes described as the "morontia child" born of the partnership between the divine Adjuster (the spirit father) and the human mind (the material mother). This metaphor captures the essential nature of the soul as a new order of reality that is produced by the interaction of the spiritual and the material. The concept of the soul in the Urantia Book differs markedly from most religious traditions. In many faiths, the soul is either preexistent or divinely implanted at conception. In the Urantia Book, the soul is genuinely emergent — it is a new creation that did not previously exist, produced by the cooperative effort of a divine spirit and a mortal will. This makes the soul a true cosmic achievement, something the universe values precisely because it is the product of genuine choice and real experience. ## How the Soul Grows The growth of the soul is directly tied to the moral and spiritual decisions of the human being. Each time a person chooses truth over falsehood, service over selfishness, or courage over fear, the soul gains substance and strength. The Adjuster provides the divine pattern and spiritual energy, while the human will provides the decisions and experiential content. This growth is not automatic. The Urantia Book emphasizes that the soul cannot evolve without the genuine consent and active participation of the mortal mind. God does not override human free will. The Adjuster proposes, but the human personality must choose. This is why moral character and sincere decision-making are so central to the Urantia Book's teaching on survival — they are literally the building material of the immortal soul. The soul also grows through worship, prayer, and the practice of spiritual ideals in daily life. As the human mind increasingly cooperates with the Adjuster's leading, the soul grows toward the point where it can eventually survive the dissolution of the physical body and continue its existence on the mansion worlds. Importantly, the soul's growth is measured not by intellectual achievement or social status but by the quality and sincerity of moral decisions. A simple person who consistently chooses to do good, to love their neighbor, and to seek God builds a robust soul, while a brilliant individual who dedicates their life purely to selfish gain may produce very little soul growth. The universe values character over intellect when it comes to survival. ## The Soul After Death When a human being dies, the physical body returns to the material world, and the mind circuit ceases to function. But the soul — the morontia identity — is preserved. The Thought Adjuster departs to Divinington carrying the spiritual transcript of the mortal's career, and the guardian seraphim becomes the custodian of the surviving soul and the dormant morontia identity. On the mansion worlds, the personality is reassembled: the Adjuster returns, the seraphim restores the morontia soul, and the personality is repersonalized in a new morontia form. The individual wakes up with full identity and memory continuity, ready to continue the ascension journey that began on Earth. This reconstitution is one of the most remarkable processes described in the Urantia Book and demonstrates the elaborate care the universe takes to preserve every willing personality. The period between death and repersonalization is described as a dreamless sleep — the mortal is entirely unconscious. Whether this interval lasts hours or thousands of years, the experience for the individual is instantaneous. They close their eyes in death and open them on the mansion worlds with their identity intact, ready to resume the great adventure of ascension. For more on what happens after death, see [Mansion Worlds](/concepts/mansion-worlds) and [Personality Survival](/concepts/personality-survival). ## The Soul and the Mind It is important to distinguish the soul from the mind. The material mind is the intellectual mechanism provided by the local universe Mother Spirit through the adjutant mind-spirits. It is the arena of human choice and the soil in which the Adjuster works. The soul, however, is a new and distinct reality that emerges from the interaction between the Adjuster and the mind. The mind is temporary and ceases at death; the soul is potentially eternal and survives death. The soul is described as the self-reflective, truth-discerning, and spirit-perceiving part of a human being. It represents the growing capacity for spiritual insight and morontia awareness that develops as a person makes progressive moral choices throughout life. While the mind thinks, the soul knows. The mind reasons about truth; the soul perceives it directly. As the soul matures, the individual develops an increasing awareness of spiritual realities that transcends mere intellectual understanding. This growing soul-consciousness is one of the hallmarks of genuine spiritual progress and the surest sign that the Adjuster's work is bearing fruit. ## The Soul and Personality It is also important to distinguish the soul from personality. Personality is the unique gift of the Universal Father bestowed on each individual — it is changeless and serves as the unifying factor of all identity. The soul, by contrast, is the growing, evolving morontia reality that gives personality a vehicle for post-mortem existence. Personality unifies the soul; the soul gives personality something to unify beyond the material realm. After death, personality is the thread of continuity that links the mortal who lived on Earth with the morontia being who awakens on the mansion worlds. The soul provides the substance and the capacity; personality provides the identity and coherence. Together they constitute the surviving self — the real person who continues the eternal adventure. ## Selected Quotes > "The soul of man is an experiential acquirement. As a mortal creature chooses to 'do the will of the Father in heaven,' so the indwelling spirit becomes the father of a new reality in human experience." — Paper 111:3.1 > "The soul is the self-reflective, truth-discerning, and spirit-perceiving part of man which forever elevates the human being above the level of the animal world." — Paper 111:3.1 > "The material mind of mortal man is the cosmic loom that carries the morontia fabrics on which the indwelling Thought Adjuster threads the spirit patterns." — Paper 111:2.2 > "The soul of man cannot exist apart from moral thinking and spiritual activity. A stagnant soul is a dying soul." — Paper 111:3.1 > "This new child of the making of the human and the divine constitutes the surviving element of terrestrial identity — the morontia self, the immortal soul." — Paper 111:2.9 ## Related Concepts * [Thought Adjusters](/concepts/thought-adjusters) — The divine co-creator of the soul * [Morontia](/concepts/morontia) — The realm of reality where the soul exists * [Personality Survival](/concepts/personality-survival) — The soul's journey after death * [Adjuster Fusion](/concepts/adjuster-fusion) — The eternal merging of Adjuster and mortal soul * [Mansion Worlds](/concepts/mansion-worlds) — Where the soul is reconstituted after death ## Try the API Search for paragraphs about the soul: ```bash theme={null} curl -X POST https://api.urantia.dev/search \ -H "Content-Type: application/json" \ -d '{"q": "soul morontia evolving", "type": "and", "limit": 10}' ``` Read Paper 111 (The Adjuster and the Soul): ```bash theme={null} curl https://api.urantia.dev/papers/111 ``` Find entities related to the soul: ```bash theme={null} curl https://api.urantia.dev/entities?q=soul ``` Try searching for "the soul" on the [interactive demo](https://demo.urantia.dev). No. The Urantia Book clearly distinguishes the soul from the mind. The material mind is the intellectual mechanism that ceases to function at death. The soul is a new morontia reality that emerges from the interaction between the Adjuster and the human mind through moral choices. The mind is the arena where the soul is created, but the soul itself is a distinct entity that survives death while the material mind does not. No. The soul begins to exist only when the Thought Adjuster arrives to indwell the human mind, which typically occurs at the moment of a child's first moral decision. Before that point, the child has a material mind but no morontia soul. The soul is the joint creation of the Adjuster and the human will and cannot come into being without both participants. The soul is not automatically immortal — it is potentially eternal. If a person persistently and finally rejects spiritual values and the leading of the Adjuster, the soul ceases to grow and eventually ceases to exist. This is not punishment but rather the natural consequence of refusing to cooperate with the divine presence. The Urantia Book describes this as the "second death," where the personality and soul simply cease to be. # Thought Adjusters - The Divine Indwelling Spirit in the Urantia Book Source: https://urantia.dev/concepts/thought-adjusters Understand Thought Adjusters (Mystery Monitors), the fragment of God that indwells every normal-minded human being according to the Urantia Book. Learn about their origin, purpose, and role in spiritual growth. **Also known as:** Mystery Monitors, Divine Monitors, Adjusters, Father Fragments, Indwelling Spirits **Key papers:** Paper 107 (Origin and Nature), Paper 108 (Mission and Ministry), Paper 109 (Relation to Universe Creatures), Paper 110 (Relation to Individual Mortals), Paper 111 (The Adjuster and the Soul) ## What Are Thought Adjusters? Thought Adjusters are one of the most profound and unique concepts presented in the Urantia Book. They are described as actual fragments of the Universal Father — the First Source and Center of all reality — that come to indwell the minds of normal-minded human beings. Unlike angels or other spiritual ministers who work externally, Thought Adjusters operate from within, sharing the very mind of the mortal they indwell. The term "Adjuster" reflects their primary function: they work to *adjust* human thinking to align more closely with divine patterns. They are also called "Mystery Monitors" because their origin and nature represent one of the greatest mysteries of the universe — how an infinite God can fragment himself to personally indwell finite creatures. ## Origin and Nature Thought Adjusters originate directly from the Universal Father on Paradise, the geographic center of infinity. They are not created beings in the ordinary sense — they are literal fragments of the absolute deity of the First Source and Center. This makes them prepersonal rather than personal; they possess divinity but not personality in the way humans experience it. The Urantia Book describes several types of Adjusters based on their experience: * **Virgin Adjusters** — Those on their first mortal assignment, with no prior indwelling experience * **Advanced Adjusters** — Those who have served in one or more mortals who did not survive * **Supreme Adjusters** — Those who have served in mortals on worlds where higher spiritual attainment is common * **Self-Acting Adjusters** — The most experienced, who have achieved special status through extraordinary service ## When Do Adjusters Arrive? According to the Urantia Book, Thought Adjusters arrive to indwell humans when a child makes their first moral decision — typically around the age of five years, ten months, and four days on average. This first moral choice creates the conditions necessary for the Father's fragment to take up residence in the human mind. Before the worldwide bestowal of the Spirit of Truth by Jesus (after Pentecost), Adjuster arrival was less universal and depended on various factors. After Pentecost, all normal-minded humans on Urantia (Earth) receive Thought Adjusters. ## What Do Thought Adjusters Do? The primary mission of the Thought Adjuster is twofold: 1. **Spiritual transformation** — They work to spiritualize human thinking, gradually transforming the mortal mind toward higher values and divine ideals 2. **Soul creation** — Together with the human will, the Adjuster co-creates the morontia soul, which is the vehicle for survival after physical death Thought Adjusters communicate with their human subjects primarily through the *superconscious* mind — the highest levels of consciousness that operate above ordinary awareness. Their guidance often manifests as: * Deep moral intuitions and spiritual longings * The persistent pull toward truth, beauty, and goodness * Dreams and idealized thought patterns (though most Adjuster communication is not consciously perceived) ## The Goal: Adjuster Fusion The ultimate destiny of a Thought Adjuster and their human partner is **fusion** — the eternal and irreversible merging of the divine Adjuster with the surviving immortal soul of the mortal. This event represents the final guarantee of eternal survival and creates a being that is both human and divine. Fusion typically occurs during the ascension career on the mansion worlds (after physical death), though in rare cases it can happen during mortal life. The most notable example in the Urantia Book is Enoch, described as one of the few humans to achieve fusion while still living on Earth. For more on what happens after fusion, see [Adjuster Fusion](/concepts/adjuster-fusion) and [Mansion Worlds](/concepts/mansion-worlds). ## Selected Quotes > "The Thought Adjusters are not thought helpers; they are thought adjusters. They labor with the material mind for the purpose of constructing, by adjustment and spiritualization, a new mind." — Paper 108:5.5 > "The Adjusters are the actuality of the Father's love incarnate in the souls of men." — Paper 107:0.2 > "The Mystery Monitor is engaged in a constant effort so to spiritualize your thinking, to so soulize your character, that you will be enabled to survive." — Paper 108:5.4 > "The Adjuster is the mark of divinity, the presence of God. The 'image of God' does not refer to physical likeness... but rather to the gift of the spirit presence of the Universal Father." — Paper 108:6.3 > "Though the work of Adjusters is spiritual in nature, they must, perforce, do all their work upon an intellectual foundation. Mind is the human soil from which the spirit Monitor must evolve the morontia soul." — Paper 111:1.1 ## Related Concepts * [The Soul](/concepts/the-soul) — The morontia entity co-created by the Adjuster and human will * [Adjuster Fusion](/concepts/adjuster-fusion) — The eternal merging of Adjuster and mortal soul * [Personality Survival](/concepts/personality-survival) — How the Adjuster ensures survival after death * [Mansion Worlds](/concepts/mansion-worlds) — Where most humans continue their ascension career ## Try the API Search for paragraphs about Thought Adjusters: ```bash theme={null} curl -X POST https://api.urantia.dev/search \ -H "Content-Type: application/json" \ -d '{"q": "Thought Adjuster", "type": "and", "limit": 10}' ``` Read Paper 107 (Origin and Nature of Thought Adjusters): ```bash theme={null} curl https://api.urantia.dev/papers/107 ``` No. The Urantia Book describes the Holy Spirit as the personal spirit circuit of the local universe Mother Spirit (the Divine Minister), which operates as a general spiritual influence. The Thought Adjuster is a distinct, individual fragment of the Universal Father that personally indwells each human mind. They work in coordination but are fundamentally different in origin and function. According to the Urantia Book, all normal-minded humans on Urantia (Earth) receive Thought Adjusters since the bestowal of the Spirit of Truth at Pentecost. The only exceptions are individuals with severe mental disabilities that prevent moral decision-making. Direct, conscious communication with the Thought Adjuster is described as extremely rare and difficult during mortal life. Most Adjuster communication occurs through the superconscious mind and is experienced indirectly as spiritual intuitions, moral leadings, and the persistent longing for truth and goodness. The Urantia Book encourages prayer, worship, and sincere moral living as the best ways to enhance Adjuster communion. # Entities API - Beings, Places & Concepts in the Urantia Book Source: https://urantia.dev/entities Browse 4,400+ named entities from the Urantia Book — beings, places, orders, races, religions, and concepts — with descriptions, aliases, and paragraph citations. The API includes a catalog of 4,400+ named entities extracted from the [Urantiapedia](https://urantiapedia.org) knowledge graph, built by [Jan Herca](https://github.com/JanHerca). Each entity is classified by type and linked to every paragraph where it appears. ## Entity types | Type | Description | Examples | | ---------- | ------------------------------------- | -------------------------------------------------------- | | `being` | Named individuals and personalities | Adam and Eve, Michael of Nebadon, Machiventa Melchizedek | | `place` | Locations and geographic regions | Jerusem, Havona, Garden of Eden | | `order` | Orders and classes of beings | Seraphim, Midwayers, Thought Adjusters | | `race` | Races and peoples | Andites, Nodites, Sangik races | | `religion` | Religious traditions and movements | Christianity, Buddhism, Salem teachings | | `concept` | Ideas, doctrines, and abstract topics | Morontia, Supreme Being, personality survival | ## Entity shape ```json theme={null} { "id": "adam-and-eve", "name": "Adam and Eve", "type": "being", "aliases": ["Material Son and Daughter", "Adam", "Eve"], "description": "The Material Son and Daughter who came to Urantia as biologic uplifters...", "seeAlso": ["garden-of-eden", "default-of-adam-and-eve"], "citationCount": 42 } ``` | Field | Description | | --------------- | ---------------------------------------------------------------- | | `id` | URL-friendly slug, used as the entity identifier | | `name` | Display name | | `type` | One of: `being`, `place`, `order`, `race`, `religion`, `concept` | | `aliases` | Alternative names (nullable) | | `description` | Brief description from Urantiapedia (nullable) | | `seeAlso` | Related entity IDs (nullable) | | `citationCount` | Number of paragraphs that mention this entity | ## Browsing entities ```bash theme={null} # List all entities (paginated) curl "https://api.urantia.dev/entities?limit=20" # Filter by type curl "https://api.urantia.dev/entities?type=being&limit=10" # Search by name curl "https://api.urantia.dev/entities?q=melchizedek" # Combine filters curl "https://api.urantia.dev/entities?type=place&q=eden" ``` ## Getting a single entity ```bash theme={null} curl https://api.urantia.dev/entities/adam-and-eve ``` Returns 404 if the entity ID doesn't exist. ## Finding paragraphs for an entity ```bash theme={null} curl "https://api.urantia.dev/entities/adam-and-eve/paragraphs?limit=5" ``` Returns a paginated list of paragraphs that mention the entity, ordered by position in the text. ## Translated entities All 4,456 entities are available in 5 languages: Spanish, French, Portuguese, German, and Korean. Pass `?lang=` to get translated names, descriptions, and aliases. ```bash theme={null} # Get an entity in Spanish curl "https://api.urantia.dev/entities/machiventa-melchizedek?lang=es" # List beings in French curl "https://api.urantia.dev/entities?type=being&lang=fr&limit=10" # Search entities in German curl "https://api.urantia.dev/entities?q=melchizedek&lang=de" ``` The response includes a `language` field indicating which language was returned: ```json theme={null} { "data": { "id": "machiventa-melchizedek", "name": "Machiventa Melchizedek", "type": "being", "description": "Un Hijo Melchizedek que se encarnó como otorgamiento de emergencia en Urantia...", "language": "es", "citationCount": 55 } } ``` If a translation isn't available for the requested language, the API falls back to English and returns `"language": "eng"`. **Supported languages:** `eng` (default), `es`, `fr`, `pt`, `de`, `ko` To see translation progress across all languages, use the `/languages` endpoint: ```bash theme={null} curl https://api.urantia.dev/languages ``` ## Inline entities on paragraphs You can also include entity mentions directly on paragraph responses using `?include=entities`: ```bash theme={null} curl "https://api.urantia.dev/paragraphs/74:1.1?include=entities" ``` This adds an `entities` array to each paragraph with the `id`, `name`, and `type` of every entity mentioned: ```json theme={null} { "data": { "id": "2:74.1.1", "text": "Adam and Eve arrived on Urantia...", "entities": [ { "id": "adam-and-eve", "name": "Adam and Eve", "type": "being" }, { "id": "urantia", "name": "Urantia", "type": "place" } ] } } ``` Works on all paragraph-returning endpoints: `/paragraphs/*`, `/papers/:id`, `/search`, and `/search/semantic`. For search endpoints, pass `"include": "entities"` in the request body. # Urantia Papers API - Free REST API for Urantia Book Content Source: https://urantia.dev/index Free, open REST API providing structured access to all 197 papers, 14,500+ paragraphs, full-text search, and audio narration of the Urantia Book. The Urantia Papers API provides structured access to all 197 papers, 1,626 sections, and 14,500+ paragraphs of the Urantia Book — with full-text search and multi-voice audio narration. ## Quick links Make your first API call in under a minute. Connect Claude, Cursor, or any AI agent — 19 tools, 2 resources, 2 prompts. One-click via Smithery. Explore all endpoints with interactive examples. Ideas and code examples for what you can build. ## Base URL ``` https://api.urantia.dev ``` ## Features * **Full-text search** with ranked results across all paragraphs * **Semantic search** using vector embeddings for meaning-based queries * **MCP servers** at [`/mcp-servers`](/mcp-servers) — 19 tools + 2 resources + 2 prompts for Claude, Cursor, and other AI agents (one-click install via Smithery) * **Function-calling schemas** at `/tools/openai` and `/tools/anthropic` — drop-in tool definitions for the OpenAI and Anthropic SDKs * **Three paragraph ID formats** auto-detected from the reference string * **4,400+ entities** — beings, places, orders, races, religions, concepts * **Audio narration** with multiple TTS models and voices per paragraph * **OpenAPI spec** at `/openapi.json` for client generation * **No authentication required** — free and open ## Ecosystem Modern reading experience with bookmarks, notes, progress tracking, and AI chat. Clean, minimal reader for the Urantia Papers. ## Donate This API is free and open source. If it's useful to you, consider donating to keep the infrastructure running. # MCP Servers - Give AI Agents Access to the Urantia Book Source: https://urantia.dev/mcp-servers Connect Claude Desktop, Cursor, Windsurf, and other AI agents to the Urantia Papers API and documentation via MCP. 19 tools, 2 resource templates, 2 prompts — zero setup. There are two MCP servers available — one for accessing Urantia Book data directly, and one for searching this documentation site. | Server | URL | Capabilities | Purpose | | ------------------- | --------------------- | -------------------------------- | ---------------------------------------------------------------------------- | | **API MCP Server** | `api.urantia.dev/mcp` | 19 tools, 2 resources, 2 prompts | Search, paragraphs, entities, audio, Bible (WEB) + UB↔Bible cross-references | | **Docs MCP Server** | `urantia.dev/mcp` | 1 tool | Search the documentation site | ## API MCP Server The Urantia Papers API includes a built-in [Model Context Protocol](https://modelcontextprotocol.io) (MCP) server that exposes API endpoints as tools, papers/entities as resources, and study workflows as prompts that any AI agent can use natively. ``` https://api.urantia.dev/mcp ``` ### Listed in the official registries This server is published in the canonical registries that MCP-aware clients query for discovery: * **[MCP Registry](https://registry.modelcontextprotocol.io)** (Anthropic-stewarded, official) — `dev.urantia/urantia-papers`. Verifiable: `curl "https://registry.modelcontextprotocol.io/v0/servers?search=urantia"` * **[Smithery](https://smithery.ai/servers/urantiahub/urantia-papers)** — community marketplace with one-click install + 100/100 quality score [![smithery badge](https://smithery.ai/badge/urantiahub/urantia-papers)](https://smithery.ai/servers/urantiahub/urantia-papers) ### One-click install via Smithery The fastest way to add this server to your MCP client is via [Smithery](https://smithery.ai/servers/urantiahub/urantia-papers) — it generates the right config snippet for your client and handles the install. ### Manual setup Add the server to your MCP client config directly. No API key, no installation, no build step. Add to `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS) or `%APPDATA%\Claude\claude_desktop_config.json` (Windows): ```json theme={null} { "mcpServers": { "urantia-papers": { "url": "https://api.urantia.dev/mcp" } } } ``` Restart Claude Desktop. You'll see 19 tools available. Add to `.mcp.json` in your project root: ```json theme={null} { "mcpServers": { "urantia-papers": { "url": "https://api.urantia.dev/mcp" } } } ``` Add to your MCP settings: ```json theme={null} { "mcpServers": { "urantia-papers": { "url": "https://api.urantia.dev/mcp" } } } ``` Works with any client that supports [MCP Streamable HTTP transport](https://modelcontextprotocol.io/specification/2025-03-26/basic/transports#streamable-http). ### Available Tools The MCP server exposes 19 tools using dot-notation names organized into a navigable namespace tree. All tools advertise read-only annotations and ship with output schemas for structured responses. #### Structure & Navigation | Tool | Description | | ----------------- | --------------------------------------------------------------------------------- | | `toc.get` | Get the full table of contents — all 4 parts and 197 papers. Best starting point. | | `papers.list` | List all 197 papers with metadata (id, title, partId, labels). | | `papers.get` | Get a single paper with all its paragraphs. Supports `include_entities`. | | `papers.sections` | Get all sections within a paper, ordered by section number. | #### Paragraphs | Tool | Description | | -------------------- | ---------------------------------------------------------------------------------------- | | `paragraphs.get` | Look up a paragraph by reference. Supports 3 formats: `"1:2.0.1"`, `"2:0.1"`, `"2.0.1"`. | | `paragraphs.context` | Get a paragraph with N paragraphs before and after (configurable `window`, 1-10). | | `paragraphs.random` | Get a random paragraph. Great for exploration. | #### Search | Tool | Description | | ----------------- | ----------------------------------------------------------------------------------------- | | `search.fulltext` | Full-text search. Modes: `and` (default), `or`, `phrase`. Filters: `paper_id`, `part_id`. | | `search.semantic` | Semantic similarity search via vector embeddings. Finds conceptually related passages. | #### Entities | Tool | Description | | --------------------- | --------------------------------------------------------------------------------------------------------------- | | `entities.list` | Browse 4,400+ entities (beings, places, orders, races, religions, concepts). Filter by `type` or search by `q`. | | `entities.get` | Get entity details: name, type, aliases, description, related entities, citation count. | | `entities.paragraphs` | Get all paragraphs that mention a specific entity. | #### Audio | Tool | Description | | ----------- | ------------------------------------------------------------------ | | `audio.get` | Get audio file URLs for a paragraph. Accepts any reference format. | #### Bible (World English Bible) | Tool | Description | | ------------------------------- | -------------------------------------------------------------------------------------------------------------------- | | `bible.books` | List all 81 books (39 OT + 15 deuterocanonical + 27 NT) with OSIS codes, canon, chapter counts. | | `bible.book` | Get a single book's metadata. Accepts OSIS, USFM, full names, and aliases (case-insensitive). | | `bible.chapter` | Get all verses in a chapter, ordered by verse number. | | `bible.verse` | Get a single verse by `bookCode`, `chapter`, `verse`. | | `bible.verse.urantia_parallels` | Reverse cross-reference — top-10 Urantia paragraphs semantically nearest a Bible verse. | | `bible.search.semantic` | Live semantic search over all 38,034 Bible verses; results arrive with their nearest UB paragraphs already attached. | ### Cross-reference enrichment on existing tools `paragraphs.get`, `paragraphs.random`, `search.fulltext`, and `search.semantic` accept two optional booleans that attach pre-computed semantic neighbors to each result: | Param | What you get | | --------------------------- | -------------------------------------------------------------------------------------- | | `include_bible_parallels` | Top-10 Bible verses semantically nearest each UB paragraph. | | `include_urantia_parallels` | Top-10 Urantia paragraphs semantically nearest each UB paragraph (UB ↔ UB "see also"). | Both can be combined. Parallels are pre-computed via `text-embedding-3-large` cosine similarity, so adding them is cheap. Note: these are *semantic* neighbors, not curated linguistic parallels (e.g. Faw's Paramony) — best results trend conceptual rather than verse-citation. ### Resources In addition to tools, the server exposes two resource templates clients can read directly: | URI Template | Description | | ----------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | | `urantia://paper/{id}` | A single paper rendered as plaintext markdown with section headings and paragraph references. Useful for full-paper context in RAG or summarization. | | `urantia://entity/{id}` | An entity (being, place, order, race, religion, or concept) with description, aliases, related entities, and references to all paragraphs that mention it. | ### Prompts The server also publishes two reusable prompt templates for common study workflows: | Prompt | Arguments | Description | | ---------------------- | -------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | | `study_assistant` | `topic` (optional) | Primes the model to act as a Urantia Book study guide. Optionally focuses the session on a specific topic or passage. | | `comparative_theology` | `topic`, `tradition` | Structures a comparison between a Urantia Book teaching and another religious or philosophical tradition (e.g. Buddhism, Stoicism). | ### Example Prompts Once connected, try asking your AI agent: * **"Search the Urantia Book for passages about love"** — uses `search.fulltext` * **"What does the Urantia Book say about what happens after death?"** — uses `search.semantic` * **"Read Paper 1 about the Universal Father"** — uses the `urantia://paper/1` resource * **"Show me paragraph 2:5.10 with surrounding context"** — uses `paragraphs.context` * **"Find all entities of type 'place'"** — uses `entities.list` * **"What entities are mentioned in paragraph 0:0.1?"** — uses `paragraphs.get` with `include_entities` * **"Compare what the Urantia Book teaches about the soul with Stoic philosophy"** — uses the `comparative_theology` prompt * **"Find Urantia Book paragraphs related to Matthew 5:3"** — uses `bible.verse.urantia_parallels` * **"Search the Bible for passages about forgiveness and show the related Urantia teachings"** — uses `bible.search.semantic` * **"Show me 0:0.1 with both Bible parallels and related Urantia paragraphs"** — uses `paragraphs.get` with `include_bible_parallels` and `include_urantia_parallels` ### How It Works The MCP server uses [Streamable HTTP transport](https://modelcontextprotocol.io/specification/2025-03-26/basic/transports#streamable-http), which means: * **No local process** — it runs on the same Cloudflare Worker as the API * **Stateless** — each request creates a fresh server instance (no sessions to manage) * **Same rate limits** as the REST API (100 requests/minute per IP) * **Same data** — MCP tools query the database directly, returning the same results as the REST endpoints ### MCP vs REST Both give you access to the same data. Choose based on your use case: | | MCP (`api.urantia.dev/mcp`) | REST (`api.urantia.dev/*`) | | ------------------- | -------------------------------- | --------------------------------------------------------------- | | **Best for** | AI agents (Claude, Cursor, etc.) | Apps, scripts, manual exploration | | **Protocol** | JSON-RPC over Streamable HTTP | Standard HTTP | | **Auth** | None | None | | **Surface** | 19 tools, 2 resources, 2 prompts | All endpoints + `/tools/openai`, `/tools/anthropic` for SDK use | | **Response format** | MCP content blocks | JSON with `data`/`meta` wrappers | ## Docs MCP Server Mintlify provides a hosted MCP server that lets AI agents search these documentation pages — useful for discovering endpoints, understanding usage patterns, and learning the API. ``` https://urantia.dev/mcp ``` ### Setup Add to `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS) or `%APPDATA%\Claude\claude_desktop_config.json` (Windows): ```json theme={null} { "mcpServers": { "urantia-dev-docs": { "command": "npx", "args": ["-y", "@anthropic-ai/mcp-remote@latest", "https://urantia.dev/mcp"] } } } ``` Add to `.mcp.json` in your project root: ```json theme={null} { "mcpServers": { "urantia-dev-docs": { "command": "npx", "args": ["-y", "@anthropic-ai/mcp-remote@latest", "https://urantia.dev/mcp"] } } } ``` ### Available Tool | Tool | Description | | ------------------ | ------------------------------------------------------------------------------------------------------- | | `SearchUrantiaDev` | Search across the documentation to find endpoint references, code examples, guides, and usage patterns. | ### Example Prompts * **"How do I search the Urantia Papers API?"** * **"What paragraph reference formats does the API support?"** * **"Show me how to use the entities endpoint"** * **"What audio voices are available?"** ## Using Both MCP Servers For the best experience, add both servers to your client: ```json theme={null} { "mcpServers": { "urantia-papers": { "url": "https://api.urantia.dev/mcp" }, "urantia-dev-docs": { "command": "npx", "args": ["-y", "@anthropic-ai/mcp-remote@latest", "https://urantia.dev/mcp"] } } } ``` * **API MCP Server** (`api.urantia.dev/mcp`) — 19 tools for accessing Urantia Book data, the World English Bible, and UB↔Bible cross-references * **Docs MCP Server** (`urantia.dev/mcp`) — 1 tool for searching this documentation site ## Building a Custom MCP Server If you need custom logic (e.g., combining multiple tools, caching, or preprocessing results), you can build your own MCP server that calls our REST API. See the [Build an MCP Server](/blog/mcp-server-urantia-book) tutorial for a step-by-step guide. # Open Source Source: https://urantia.dev/open-source Everything we build is MIT-licensed and free. Here's what that means and how to use it. ## Licensing All code across the UrantiaHub ecosystem is released under the **MIT License**, meaning you can use, modify, and distribute it freely — including for commercial projects. No permission needed. | What | License | Details | | ---------------------------------------- | ------------------------------------------------------------- | ------------------------ | | All source code | [MIT](https://opensource.org/licenses/MIT) | Use it however you want | | Original content (guides, quotes, docs) | [CC0 1.0](https://creativecommons.org/publicdomain/zero/1.0/) | Public domain dedication | | The Urantia Book English text | Public domain | Since 2006 | | Audio narrations, embeddings, AI content | [CC0 1.0](https://creativecommons.org/publicdomain/zero/1.0/) | Public domain dedication | ## Repositories All repos live under the [urantia-hub](https://github.com/urantia-hub) GitHub organization. ### Core Infrastructure Hono + Drizzle API on Cloudflare Workers. Full-text search, semantic search, OAuth, MCP server. TypeScript SDKs — @urantia/api (typed client) and @urantia/auth (OAuth/PKCE). This documentation site. Scripts for managing the Cloudflare R2 data bucket (papers, audio, entities, embeddings). ### Applications UrantiaHub reading platform — Next.js with bookmarks, notes, AI chat, reading progress, daily quotes. Interactive demo site showcasing API features. Minimal Next.js OAuth example app using @urantia/auth. MCP plugin for Claude Desktop and Cursor. ### Research & Media High-performance Rust video renderer for YouTube narrations. Computational verification of the 860x wavelength ratio claim against NIST CODATA physics constants. The Urantia Papers in structured JSON + MP3 audio files. ## Contributing Every repo has a `README.md` with setup instructions. The general flow: 1. Fork the repo 2. Create a feature branch 3. Make your changes 4. Open a PR Questions? Reach out at [kelson@urantia.dev](mailto:kelson@urantia.dev). ## Disclaimer This is an independent community project by [Adams Technologies LLC](https://adamstechnologies.com). It is not affiliated with, endorsed by, or connected with Urantia Foundation. The original English text of *The Urantia Book* is in the public domain. All use of "Urantia" is nominative fair use to identify the subject matter. # Papers & Sections Source: https://urantia.dev/papers Access all 197 papers and 1,626 sections of the Urantia Book through the API. Organized into 4 parts with full table of contents. The Urantia Book is structured as **197 papers** organized into **4 parts**, with the Foreword as Paper 0. Each paper contains numbered sections, and each section contains numbered paragraphs. ## Structure | Level | Count | Description | | ---------- | ------- | -------------------------------- | | Parts | 4 | Major divisions of the book | | Papers | 197 | Individual papers (0 = Foreword) | | Sections | 1,626 | Subdivisions within papers | | Paragraphs | 14,500+ | Atomic content units | ## Table of contents Get the full hierarchical structure in a single call: ```bash theme={null} curl https://api.urantia.dev/toc ``` Returns all parts with their papers nested inside — useful for building navigation. ## List all papers ```bash theme={null} curl https://api.urantia.dev/papers ``` Returns metadata for all 197 papers including title, part, and section count. Add `?include=topEntities` to attach a per-paper aggregate of the most-cited named entities. Sorted by paragraph citation count descending; ties break so beings, places, and concepts rank above orders, races, and religions (and finally alphabetical): ```bash theme={null} curl 'https://api.urantia.dev/papers?include=topEntities' | jq '.data[1].topEntities' # [ # { "id": "universal-father", "name": "Universal Father", "type": "being", "count": 74 }, # { "id": "personality", "name": "personality", "type": "concept", "count": 66 }, # { "id": "god", "name": "God", "type": "being", "count": 46 }, # ... # ] ``` ## Read a paper ```bash theme={null} # Get Paper 1 — The Universal Father curl https://api.urantia.dev/papers/1 ``` Returns the full paper with all paragraphs. Each paragraph includes `text`, `htmlText`, `standardReferenceId`, audio URLs, and optional entity mentions. Add `?include=entities` to get entity annotations on every paragraph **and** the paper-level `topEntities` aggregate: ```bash theme={null} curl https://api.urantia.dev/papers/1?include=entities ``` Prefer a lighter payload? Request just the paper-level aggregate without per-paragraph mentions: ```bash theme={null} curl 'https://api.urantia.dev/papers/1?include=topEntities' | jq '.data.paper.topEntities' ``` Or request both explicitly: ```bash theme={null} curl 'https://api.urantia.dev/papers/1?include=entities,topEntities' ``` ## Get sections ```bash theme={null} # Get sections for Paper 1 curl https://api.urantia.dev/papers/1/sections ``` Returns the section breakdown for a paper — useful for building section-level navigation. ## The 4 parts | Part | Papers | Topic | | ---- | ------- | ------------------------------- | | I | 1–31 | The Central and Superuniverses | | II | 32–56 | The Local Universe | | III | 57–119 | The History of Urantia | | IV | 120–196 | The Life and Teachings of Jesus | See the full endpoint documentation with interactive examples. # Paragraphs & References Source: https://urantia.dev/paragraphs Access individual paragraphs with three reference formats, context windows, and entity enrichment. Paragraphs are the atomic content units of the Urantia Papers. Each one has a unique reference, full text, HTML rendering, optional audio, and optional entity mentions. ## Reference formats The API accepts three formats for identifying a paragraph — all auto-detected: | Format | Example | Pattern | | ----------------------- | --------- | ------------------------------------ | | Standard reference | `2:0.1` | paperId:sectionId.paragraphId | | Paper.section.paragraph | `2.0.1` | paperId.sectionId.paragraphId | | Global ID | `1:2.0.1` | partId:paperId.sectionId.paragraphId | Use whichever is most natural for your use case. The standard reference (`2:0.1`) is the most common in Urantia Book study. ## Get a paragraph ```bash theme={null} # Using standard reference curl https://api.urantia.dev/paragraphs/2:0.1 # Same paragraph, different format curl https://api.urantia.dev/paragraphs/2.0.1 ``` ## Get a random paragraph ```bash theme={null} curl https://api.urantia.dev/paragraphs/random ``` Returns a single random paragraph — great for daily quotes, inspiration widgets, or testing. ### Filter by length Use `minLength` and `maxLength` to filter by character count. This is useful when you need paragraphs of a specific length — for example, voice recording prompts or card-sized quotes. ```bash theme={null} # Paragraphs between 300-800 characters (good for 10-30s narration) curl "https://api.urantia.dev/paragraphs/random?minLength=300&maxLength=800" # Short paragraphs for quote cards curl "https://api.urantia.dev/paragraphs/random?maxLength=200" # Long paragraphs for deep reading curl "https://api.urantia.dev/paragraphs/random?minLength=500" ``` | Parameter | Type | Description | | ----------- | ------- | ----------------------------------------- | | `minLength` | integer | Minimum character count of paragraph text | | `maxLength` | integer | Maximum character count of paragraph text | ## Context window Retrieve a paragraph with its surrounding context: ```bash theme={null} # Get paragraph with 3 paragraphs before and after curl https://api.urantia.dev/paragraphs/2:0.1/context?window=3 ``` Returns `target` (the requested paragraph), `before` (preceding paragraphs), and `after` (following paragraphs). The `window` parameter accepts 1–10. This is especially useful for RAG applications where an LLM needs surrounding context to give accurate answers. ## Entity enrichment Add `?include=entities` to get typed entity mentions on any paragraph: ```bash theme={null} curl https://api.urantia.dev/paragraphs/2:0.1?include=entities ``` Each entity includes `id`, `name`, and `type` (being, place, order, race, religion, or concept). ## Response shape ```json theme={null} { "data": { "id": "1:2.0.1", "standardReferenceId": "2:0.1", "paperId": "2", "paperTitle": "The Nature of God", "sectionId": "0", "sectionTitle": "", "paragraphId": "1", "text": "Your Father in heaven, by endowing you with...", "htmlText": "

Your Father in heaven, by endowing you with...

", "audio": { "tts-1-hd": { "nova": { "format": "mp3", "url": "https://audio.urantia.dev/..." } } } } } ``` See the full endpoint documentation with interactive examples. # Preservation Source: https://urantia.dev/preservation How we're ensuring the Urantia Papers remain freely accessible forever — across blockchain, archives, and public repositories. Throughout history, humanity has repeatedly lost invaluable knowledge. The burning of the Library of Alexandria, the destruction of ancient texts during wars, and the natural decay of physical documents have all contributed to the loss of our collective wisdom. We're using every tool available to make sure the Urantia Papers can't be locked away, censored, or lost. ## Strategy Our preservation approach has three layers: | Layer | Purpose | Status | | ------------------------ | --------------------------------------------- | ------ | | **Blockchain (Arweave)** | Immutable, decentralized permanent storage | ✅ Live | | **Internet Archive** | Timestamped third-party institutional archive | ✅ Live | | **Public GitHub** | Open-source, forkable, version-controlled | ✅ Live | Each layer serves a different purpose. Together, they make the content practically impossible to restrict. *** ## Blockchain Archive (Arweave) The complete English text is permanently stored on [Arweave](https://www.arweave.org/), a blockchain designed for multi-century data persistence. Once written, content cannot be altered or removed. Two formats are archived: | Format | Arweave Transaction ID | | --------------- | ---------------------------------------------------------------------------------------------------------------- | | Structured JSON | [`3RLvenzfBZ60GlOygqu6DtlbEhOWldQSqjGuMSVOg9I`](https://arweave.net/3RLvenzfBZ60GlOygqu6DtlbEhOWldQSqjGuMSVOg9I) | | Plain Text | [`0YgTs2SJmIkCHxouFPdN-pWFon0ZnhjYQpg7F2DW70o`](https://arweave.net/0YgTs2SJmIkCHxouFPdN-pWFon0ZnhjYQpg7F2DW70o) | You can access these through any Arweave gateway. The transaction IDs are permanent — bookmark them. **Why Arweave?** * **Immutability** — content cannot be altered once stored * **Decentralization** — no single point of failure * **Permanence** — data persists as long as the network exists * **Verifiability** — anyone can independently verify the content using the transaction IDs ## Internet Archive The complete English text (197 papers, 14,500+ paragraphs) in structured JSON format is archived on the Internet Archive: Timestamped, institutionally preserved copy with CC0 license. 202 JSON files covering the full text. The Internet Archive has been preserving digital content since 1996 and provides an independent, institutionally backed copy that doesn't depend on us. ## Public GitHub Repositories All source data, code, and documentation live in public repositories under the [urantia-hub](https://github.com/urantia-hub) GitHub organization. Key data repo: The Urantia Papers in structured JSON format and MP3 audio files. MIT licensed. GitHub provides version history, forkability (anyone can copy the entire repo with one click), and global CDN distribution. Every repo includes a `LICENSE` file and disclaimer. ## OpenTimestamps (Bitcoin-Anchored Proofs) All MIT license files and the root `LEGAL.md` have been timestamped using [OpenTimestamps](https://opentimestamps.org/), which anchors SHA-256 file hashes to Bitcoin transactions. This creates cryptographic proof that our license dedications and legal declarations existed on or before a specific date — anchored to the most secure blockchain in existence. All 13 proofs have been upgraded with full Bitcoin attestations and are independently verifiable offline. | File | SHA-256 Hash | | ------------------------------ | -------------------------------------------------------------------------- | | All `LICENSE` files (12 repos) | `0f880bee4323620b11a287c6ccf7013610e064d0a4943c25f398c149b32d8fa7` | | `LEGAL.md` | Timestamped separately (CC0 dedication, trademark policy, non-affiliation) | Proof files (`.ots`) are stored alongside their source files in each repository. Verify with: ```bash theme={null} ots verify LICENSE.ots ots verify LEGAL.md.ots ``` ## Why This Matters Every epochal revelation in history has followed the same pattern: institutions form around it, claim authority over it, and gatekeep access. The teachings get locked behind organizations, copyrights, and approval processes. By distributing the content across multiple platforms, blockchains, and jurisdictions — all under irrevocable open licenses — we're making sure that can't happen here. The content is free now, and it stays free regardless of what happens to any single organization, domain, or platform. # Privacy Policy Source: https://urantia.dev/privacy-policy Privacy Policy for the Urantia Papers API (urantia.dev) **Last updated: March 20, 2026** This privacy notice for Adams Technologies LLC, doing business as Urantia.dev ("we," "us," or "our"), describes how and why we might collect, store, use, and/or share your information when you use our services, including the API at api.urantia.dev and the documentation at urantia.dev. If you have questions or concerns, please contact us at [team@urantiahub.com](mailto:team@urantiahub.com). **Disclaimer:** Urantia.dev is an independent community project operated by Adams Technologies LLC, a Texas limited liability company. It is not affiliated with, endorsed by, sponsored by, or officially connected with Urantia Foundation. The Urantia Book text is in the public domain. ## 1. Information We Collect **API usage data collected automatically:** When you make requests to our API, we automatically collect certain information including: * IP address * Request path, method, and query parameters * User-Agent header * Response status codes and timing * Referring URLs (if applicable) This information is collected for security, rate limiting, analytics, and improving our services. **Documentation site:** When you visit our documentation site, standard web analytics data may be collected by our hosting provider (Mintlify), including page views, browser type, and referring URLs. **We do not collect:** * Personal names or email addresses (the API does not require authentication or registration) * Payment information * Cookies for tracking purposes on the API ## 2. How We Use Your Information We process the information we collect to: * Operate and maintain the API infrastructure * Monitor and enforce rate limits * Detect and prevent abuse, fraud, and security threats * Analyze usage patterns to improve our services * Debug errors and optimize performance ## 3. How We Share Your Information We do not sell your information. We may share information with: * Infrastructure providers who assist in operating our services (Cloudflare, Supabase, BetterStack) * As required by law or to protect our legal rights * In connection with a business transfer, merger, or acquisition ## 4. Data Retention API request logs are retained for a limited period necessary for operational and security purposes. We do not maintain long-term records of individual API requests beyond what is needed for analytics and abuse prevention. ## 5. Data Security We implement appropriate technical and organizational security measures to protect our infrastructure. However, no electronic transmission or storage technology is 100% secure, and we cannot guarantee absolute security. ## 6. Your Privacy Rights Depending on your location, you may have the right to: * Request information about what data we hold related to your IP address * Request deletion of your data * Object to the processing of your information To exercise these rights, contact us at [team@urantiahub.com](mailto:team@urantiahub.com). **California residents:** Under the CCPA, you have additional rights including the right to know what personal information we collect and request deletion. We do not sell personal information. **European residents:** Under the GDPR, we process your information based on legitimate interests (operating and securing our API). You have the right to lodge a complaint with your local data protection authority. ## 7. International Data Transfers Our services are hosted in the United States and distributed via a global CDN. API requests may be processed in various regions. By using our services, you consent to this processing. ## 8. Children Our API is a developer tool and is not directed at children under 18 years of age. We do not knowingly collect data from minors. ## 9. Updates to This Notice We may update this privacy notice from time to time. The updated version will be indicated by an updated date at the top of this page. ## 10. Contact Us If you have questions about this privacy notice, contact us at: Adams Technologies LLC DBA Urantia.dev Email: [team@urantiahub.com](mailto:team@urantiahub.com) # Quickstart - Urantia Book API in 60 Seconds Source: https://urantia.dev/quickstart Make your first Urantia Book API call in under a minute. Search paragraphs, look up references, and access audio narration. ## Get a random paragraph ```bash theme={null} curl https://api.urantia.dev/paragraphs/random ``` ## Search the Urantia Papers ```bash theme={null} curl -X POST https://api.urantia.dev/search \ -H "Content-Type: application/json" \ -d '{"q": "Universal Father", "limit": 5}' ``` Search modes: `and` (all words, default), `or` (any word), `phrase` (exact match). ## Look up a specific paragraph The API accepts three reference formats — auto-detected from the string: | Format | Example | Structure | | ----------------------- | --------- | -------------------------------------- | | globalId | `1:2.0.1` | `partId:paperId.sectionId.paragraphId` | | standardReferenceId | `2:0.1` | `paperId:sectionId.paragraphId` | | paperSectionParagraphId | `2.0.1` | `paperId.sectionId.paragraphId` | ```bash theme={null} curl https://api.urantia.dev/paragraphs/1:2.0.1 ``` ## Get a paragraph with surrounding context ```bash theme={null} curl "https://api.urantia.dev/paragraphs/1:2.0.1/context?window=3" ``` Returns the target paragraph plus 3 paragraphs before and after it — useful for RAG and AI applications. ## Browse entities The API includes 4,400+ entities (beings, places, orders, races, religions, concepts) sourced from [Urantiapedia](https://urantiapedia.org), a knowledge graph built by [Jan Herca](https://github.com/JanHerca). ```bash theme={null} # List entities, optionally filter by type or search by name curl "https://api.urantia.dev/entities?type=being&limit=5" curl "https://api.urantia.dev/entities?q=adam" # Get a single entity curl https://api.urantia.dev/entities/adam-and-eve # Get all paragraphs that mention an entity curl https://api.urantia.dev/entities/adam-and-eve/paragraphs ``` You can also include entity mentions inline on any paragraph-returning endpoint with `?include=entities`: ```bash theme={null} curl "https://api.urantia.dev/paragraphs/2:0.1?include=entities" ``` ## Read a full paper ```bash theme={null} curl https://api.urantia.dev/papers/1 ``` Returns the paper metadata and all its paragraphs in order. # Urantia Book Quotes About Courage - 20 Inspiring Passages Source: https://urantia.dev/quotes/courage A curated collection of 20 powerful quotes about courage from the Urantia Book, with paper references and context. Explore what the Urantia Papers teach about moral courage, spiritual bravery, and facing life's challenges. The Urantia Book portrays courage not as the absence of fear but as the willingness to face uncertainty with faith. Moral courage and spiritual fortitude are presented as essential qualities of the God-knowing individual. Search for more passages about courage using the interactive demo. ## On Moral Courage > "The courage of the flesh is the lowest form of bravery. Mind bravery is a higher type of human courage. The highest form is uncompromising loyalty to the enlightened convictions of deep spiritual realities." > — [Paper 143:1.7](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/143:1.7) > "Intelligent courage is the supreme valor of a truly moral being." > — [Paper 3:5.12](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/3:5.12) > "Jesus' devotion to the Father's will and to the service of man was more than mortal decision and human determination; it was a wholehearted consecration to such an unreserved bestowal of love." > — [Paper 196:0.2](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/196:0.2) > "If you would be truly triumphant over the temptations of the lesser nature, you must come to that place of spiritual advantage where you have really and truly developed an actual interest in, and love for, those higher and more idealistic forms of conduct." > — [Paper 156:5.5](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/156:5.5) > "Moral courage of the highest order is required to face the trials and temptations of a progressive mortal career." > — [Paper 100:2.7](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/100:2.7) ## On Spiritual Bravery > "The religion of the spirit means effort, struggle, conflict, faith, determination, love, loyalty, and progress." > — [Paper 155:5.11](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/155:5.11) > "Spiritual greatness consists in an understanding love that is Godlike and not in an enjoyment of the exercise of material power for the exaltation of self." > — [Paper 158:6.3](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/158:6.3) > "Jesus was a truly courageous person. He never shrank from duty or obligation. He bravely faced all attacks upon his teachings." > — [Paper 100:7.15](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/100:7.15) > "The faith of Jesus was trusting, like that of a child, but it was wholly free from presumption. He made robust and manly decisions, bravely faced multifold disappointments." > — [Paper 196:0.12](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/196:0.12) > "The consciousness of a victorious human life on earth is born of that creature faith which dares to challenge each recurring episode of existence when confronted with the awful spectacle of human limitations." > — [Paper 101:2.15](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/101:2.15) ## On Facing Difficulties > "Difficulties may challenge mediocrity and defeat the fearful, but they only stimulate the true children of the Most Highs." > — [Paper 48:7.7](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/48:7.7) > "When the flood tides of human adversity, selfishness, cruelty, hate, malice, and jealousy beat about the mortal soul, you may rest in the assurance that there is one inner bastion, the citadel of the spirit, which is absolutely unassailable." > — [Paper 100:2.7](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/100:2.7) > "In winning souls for the Master, it is not the first mile of compulsion, duty, or convention that will transform man and his world, but rather the second mile of free service and liberty-loving devotion." > — [Paper 195:10.5](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/195:10.5) > "The Master's entire life was consistently conditioned by this living faith, this sublime religious experience. This spiritual attitude wholly dominated his thinking and feeling, his believing and praying." > — [Paper 196:0.9](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/196:0.9) > "Do not be so slothful as to ask God to solve your difficulties, but never hesitate to ask him for wisdom and spiritual strength to guide and sustain you." > — [Paper 91:6.5](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/91:6.5) ## On Courageous Living > "Religion inspires man to live courageously and joyfully on the face of the earth." > — [Paper 99:4.1](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/99:4.1) > "Ganid, I have absolute confidence in my heavenly Father's overcare; I am consecrated to doing the will of my Father in heaven. I do not believe that real harm can befall me." > — [Paper 133:1.4](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/133:1.4) > "Jesus was not a stoic; he was a positivist. He never deigned to bargain with evil. He met evil with positive goodness." > — [Paper 100:7.9](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/100:7.9) > "Few persons live up to the faith which they really have. Unreasoned fear is a master intellectual fraud practiced upon the evolving mortal soul." > — [Paper 48:7.4](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/48:7.4) > "The call to the adventure of building a new and transformed human society by means of the spiritual rebirth of Jesus' brotherhood of the kingdom should thrill all who believe in him." > — [Paper 195:10.6](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/195:10.6) ## Related Entities The supreme example of moral courage, who bravely faced every challenge with unwavering faith in the Father. The heroic human associate of Van who stood loyal during the Lucifer rebellion, embodying steadfast courage. The spiritual gift bestowed at Pentecost that empowers believers with courage and conviction. ## Related Collections * [Quotes About Faith](/quotes/faith) * [Quotes About Hope](/quotes/hope) * [Quotes About Truth](/quotes/truth) * [Quotes About Wisdom](/quotes/wisdom) ## Find More Quotes Search for more passages about courage using the API: ```bash theme={null} curl -X POST https://api.urantia.dev/search \ -H "Content-Type: application/json" \ -d '{"q": "courage bravery moral fortitude", "type": "or", "limit": 20}' ``` Get surrounding context for any quote: ```bash theme={null} curl "https://api.urantia.dev/paragraphs/100:2.7/context?window=3" ``` Read these passages in context on [UrantiaHub](https://urantiahub.com). # Urantia Book Quotes About Death - 20 Inspiring Passages Source: https://urantia.dev/quotes/death A curated collection of 20 powerful quotes about death from the Urantia Book, with paper references and context. Explore what the Urantia Papers teach about death, survival, resurrection, and the mansion worlds. The Urantia Book transforms the understanding of death from a fearful ending into a magnificent beginning. These 20 passages reveal what the Urantia Papers teach about the transition from mortal life to the eternal adventure that awaits beyond. Search for more passages about death and the afterlife using the interactive demo. ## On the Meaning of Death > "Death is only the beginning of an endless career of adventure, an everlasting life of anticipation, an eternal voyage of discovery." > — [Paper 14:5.10](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/14:5.10) > "What you fail to attain in the lifetime of the flesh you will continue to pursue through the long, long ages ahead." > — [Paper 47:2.8](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/47:2.8) > "God's sons have nothing to dread in death. Man's greatest adventure in the flesh consists in the well-ordered, understanding effort to transcend the boundaries of self-consciousness." > — [Paper 112:7.13](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/112:7.13) > "Death adds nothing to the intellectual possession or to the spiritual endowment, but it does add to the experiential status the consciousness of survival." > — [Paper 47:3.7](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/47:3.7) > "The mortal transit from this life to the next — the fusion of the immortal soul with the divine Adjuster — represents the authentic transfer from one universe condition to another." > — [Paper 112:7.6](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/112:7.6) ## On Survival After Death > "The mortal career, the soul's evolution, is not so much a probation as an education." > — [Paper 112:5.9](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/112:5.9) > "Eternal survival of personality is wholly dependent on the choosing of the mortal mind, whose decisions determine the survival potential of the immortal soul." > — [Paper 112:5.5](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/112:5.5) > "If there ever is a doubt as to the advisability of advancing a human identity to the mansion worlds, the universe governments invariably rule in the personal interests of that individual." > — [Paper 112:5.7](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/112:5.7) > "When the more spiritually and cosmically advanced mortals of the evolutionary worlds die, they proceed immediately to the mansion worlds." > — [Paper 49:6.9](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/49:6.9) > "There is something real, something of human evolution, something additional to the Mystery Monitor, which survives death. This newly appearing entity is the soul, and it survives the death of both your physical body and your material mind." > — [Paper 112:5.12](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/112:5.12) ## On the Mansion Worlds > "The mansion world teachers begin to assist you in making the best use of your new morontia body." > — [Paper 47:3.1](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/47:3.1) > "On the mansion worlds the resurrected mortal survivors resume their lives just where they left off when overtaken by death." > — [Paper 47:3.7](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/47:3.7) > "The deficiency ministry of the mansion worlds is there to ensure that no survivor is deprived of aught that is essential to his ascension experience." > — [Paper 47:3.8](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/47:3.8) > "The mansion worlds are probationary spheres where the ascending mortals recover from the specific handicaps of their planetary existence." > — [Paper 47:3.2](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/47:3.2) > "Before leaving the mansion worlds, all survivors will have a fully matured morontia form, perfect in its adaptation to the next phase of the ascending life." > — [Paper 47:8.6](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/47:8.6) ## On Eternal Life > "In the inner experience of man, mind is joined to matter. Such material-linked minds cannot survive mortal death. The technique of survival is embraced in those adjustments of the human will and those transformations in the mortal mind whereby the God-conscious intellect gradually becomes spirit taught." > — [Paper 1:3.7](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/1:3.7) > "The goals of eternity are ahead! The adventure of divinity attainment lies before you!" > — [Paper 32:5.8](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/32:5.8) > "Throughout all eternity you will be looking back on this sphere of mortal nativity as the place where life started, where you and your divine Adjuster first joined in partnership." > — [Paper 47:10.2](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/47:10.2) > "Time is the moving image of eternity, and life is an adventure to be lived, a gift from the Creator to the creature." > — [Paper 32:5.1](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/32:5.1) > "And this is the long trail to Paradise, but it is a trail that you can travel; it is a trail that you will travel if you so choose." > — [Paper 34:6.9](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/34:6.9) ## Related Entities The seven transitional spheres where mortal survivors begin their ascension career after death. The divine fragments that preserve the soul's identity through the transition of death. The guardian angels who safeguard mortal identity and escort survivors to the mansion worlds. ## Related Collections * [Quotes About the Soul](/quotes/soul) * [Quotes About Faith](/quotes/faith) * [Quotes About Hope](/quotes/hope) * [Quotes About God](/quotes/god) ## Find More Quotes Search for more passages about death and survival using the API: ```bash theme={null} curl -X POST https://api.urantia.dev/search \ -H "Content-Type: application/json" \ -d '{"q": "death survival mansion worlds resurrection", "type": "or", "limit": 20}' ``` Get surrounding context for any quote: ```bash theme={null} curl "https://api.urantia.dev/paragraphs/47:3.7/context?window=3" ``` Read these passages in context on [UrantiaHub](https://urantiahub.com). # Urantia Book Quotes About Faith - 20 Inspiring Passages Source: https://urantia.dev/quotes/faith A curated collection of 20 powerful quotes about faith from the Urantia Book, with paper references and context. Explore what the Urantia Papers teach about living faith, spiritual trust, and belief in God. Faith is one of the most frequently discussed topics in the Urantia Book. It is described not as passive belief but as active, living trust — a dynamic spiritual force that connects humans to God and sustains them through all challenges. Search for more passages about faith using the interactive demo. ## On the Nature of Faith > "Faith is a living attribute of genuine personal religious experience." > — [Paper 101:8.1](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/101:8.1) > "Belief has attained the level of faith when it motivates life and shapes the mode of living." > — [Paper 101:8.1](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/101:8.1) > "Faith acts to release the superhuman activities of the divine spark, the immortal germ, that lives within the mind of man." > — [Paper 132:3.6](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/132:3.6) > "By faith recognize the inner spirit of God whose acceptance makes you a son of God." > — [Paper 150:5.2](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/150:5.2) > "Faith is the open door for entering into the present, perfect, and eternal love of God." > — [Paper 138:8.8](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/138:8.8) ## On Faith and Spiritual Growth > "Man's sole contribution to growth is the mobilization of the total powers of his personality — living faith." > — [Paper 100:3.7](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/100:3.7) > "The one thing of supreme value in human life is to know the will of God and to do it." > — [Paper 196:0.13](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/196:0.13) > "Few persons live up to the faith which they really have. Unreasoned fear is a master intellectual fraud practiced upon the evolving mortal soul." > — [Paper 48:7.4](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/48:7.4) > "Spiritual growth is first an awakening to needs, next a discernment of meanings, and then a discovery of values." > — [Paper 100:2.2](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/100:2.2) > "Faith most willingly carries reason along as far as reason can go and then goes on with wisdom to the full philosophic limit; and then it dares to launch out upon the limitless and never-ending universe journey in the sole company of TRUTH." > — [Paper 103:9.7](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/103:9.7) ## On Faith in Action > "Faith transforms the philosophic God of probability into the saving God of certainty in the personal religious experience." > — [Paper 102:6.4](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/102:6.4) > "The experience of God-knowing must not be an experience of doubt, but rather one of certainty." > — [Paper 102:6.5](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/102:6.5) > "Jesus' earthly life was devoted to one great purpose — doing the Father's will, living the human life religiously and by faith." > — [Paper 196:0.14](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/196:0.14) > "Remember, in all your disappointments, that faith is the victory that overcomes the world." > — [Paper 101:2.15](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/101:2.15) > "If you have faith, you have everything worth having; if you do not have faith, nothing you might have is worth having." > — [Paper 100:2.7](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/100:2.7) (paraphrased teaching) ## On Faith and Fear > "The God-knowing individual is not one who is blind to the difficulties or unmindful of the obstacles which stand in the way of finding God." > — [Paper 101:10.9](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/101:10.9) > "In religion, Jesus advocated and followed the method of experience, even as modern science pursues the technique of experiment." > — [Paper 195:5.14](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/195:5.14) > "Doubt, hesitation, and indecision characterize your confused present-day philosophy. You are now standing on the threshold of a spiritual new age." > — [Paper 155:6.17](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/155:6.17) > "When the flood tides of human adversity, selfishness, cruelty, hate, malice, and jealousy beat about the mortal soul, you may rest in the assurance that there is one inner bastion, the citadel of the spirit, which is absolutely unassailable." > — [Paper 100:2.7](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/100:2.7) > "Religion inspires man to live courageously and joyfully on the face of the earth." > — [Paper 99:4.1](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/99:4.1) ## Related Entities The supreme example of living faith — explore his life and teachings. The divine spark within that faith activates and empowers. The spirit guide that strengthens and directs faith. ## Related Collections * [Quotes About Love](/quotes/love) * [Quotes About Prayer](/quotes/prayer) * [Quotes About Courage](/quotes/courage) * [Quotes About Truth](/quotes/truth) ## Find More Quotes Search for more passages about faith using the API: ```bash theme={null} curl -X POST https://api.urantia.dev/search \ -H "Content-Type: application/json" \ -d '{"q": "faith living spiritual trust", "type": "or", "limit": 20}' ``` Get surrounding context for any quote: ```bash theme={null} curl "https://api.urantia.dev/paragraphs/101:8.1/context?window=3" ``` Read these passages in context on [UrantiaHub](https://urantiahub.com). # Urantia Book Quotes About Family - 20 Inspiring Passages Source: https://urantia.dev/quotes/family A curated collection of 20 powerful quotes about family from the Urantia Book, with paper references and context. Explore what the Urantia Papers teach about the family of God, parenthood, and the sacred nature of family life. The Urantia Book elevates family to a central position in both human civilization and universe reality. God is portrayed as the universal Father, all beings as his children, and the human family as the most important institution on earth. Search for more passages about family using the interactive demo. ## On the Family of God > "The brotherhood of man is founded on the fatherhood of God. The family of God is derived from the love of God — God is love." > — [Paper 134:4.1](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/134:4.1) > "When once you grasp the idea of God as a true and loving Father, the only concept which Jesus ever taught, you must forthwith, in all consistency, utterly abandon all those primitive notions about God." > — [Paper 188:4.8](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/188:4.8) > "In the experience of finding the Father in heaven, you discover that all men are your brothers, and does it seem strange that one should enjoy the exhilaration of meeting a newly discovered brother?" > — [Paper 130:2.6](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/130:2.6) > "The love of the Father absolutely individualizes each personality as a unique child of the Universal Father, a child without duplicate in infinity." > — [Paper 12:7.9](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/12:7.9) > "God is not only the determiner of destiny; he is man's eternal destination. All nonreligious human activities seek to bend the universe to the distorting service of self." > — [Paper 5:4.3](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/5:4.3) ## On Parenthood > "A child can best discover all matters of human relationship by observing how his parents behave; likewise can a child catch a glimpse of the divine nature by understanding the earthly family." > — [Paper 142:7.4](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/142:7.4) > "The family is man's greatest purely human achievement, combining as it does the evolution of the biologic relations of male and female with the social relations of husband and wife." > — [Paper 84:6.8](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/84:6.8) > "No surviving mortal, midwayer, or seraphim may ascend to Paradise, attain the Father, and be mustered into the Corps of the Finality without having passed through that sublime experience of achieving parental relationship to an evolving child." > — [Paper 45:6.4](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/45:6.4) > "A human being's entire afterlife is enormously influenced by what happens during the first few years of existence." > — [Paper 177:2.5](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/177:2.5) > "The family occupied the very center of Jesus' philosophy of life — here and hereafter. He based his teachings about God on the family." > — [Paper 140:8.14](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/140:8.14) ## On Human Family Life > "The family is the fundamental unit of fraternity in which parents and children learn those lessons of patience, altruism, tolerance, and forbearance which are so essential to the realization of brotherhood among all men." > — [Paper 84:7.28](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/84:7.28) > "Marriage, with children and consequent family life, is stimulative of the highest potentials in human nature." > — [Paper 83:6.6](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/83:6.6) > "A child should gain from his parents the conviction that he is loved. The parents must not fail to bestow this assurance." > — [Paper 177:2.2](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/177:2.2) > "Almost everything of lasting value in civilization has its roots in the family. The family was the first successful peace group." > — [Paper 68:2.8](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/68:2.8) > "The advances of true civilization are all born in this inner world of mankind. It is only the inner life that is truly creative." > — [Paper 111:4.3](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/111:4.3) ## On Family and Spiritual Growth > "Those families which are characterized by religious living possess a spiritual vitality far beyond the culture of the irreligious." > — [Paper 99:4.2](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/99:4.2) > "While religious faith is the mighty mobilizer, love is the real driving force of life. Every living relationship is founded on love." > — [Paper 196:3.29](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/196:3.29) > "Love of children is almost universal and is of distinct survival value. The ancients always sacrificed the mother's interests for the welfare of the child." > — [Paper 84:7.10](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/84:7.10) > "The affectionate heavenly Father, whose spirit indwells his children on earth, is not a divided personality — one of justice and one of mercy — neither does it require a mediator to secure the Father's favor or forgiveness." > — [Paper 2:6.6](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/2:6.6) > "The family is vitally linked to the mechanism of self-maintenance; it is the sole hope of perpetuating the race under the mores of civilization." > — [Paper 84:6.8](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/84:6.8) ## Related Entities The divine parent of all creation, whose fatherhood is the foundation of the universal family concept. Centered his teachings on the family, using the parent-child relationship to reveal the nature of God. The Material Son and Daughter whose mission included uplifting the biological and cultural life of families on Urantia. ## Related Collections * [Quotes About Love](/quotes/love) * [Quotes About Service](/quotes/service) * [Quotes About God](/quotes/god) * [Quotes About Wisdom](/quotes/wisdom) ## Find More Quotes Search for more passages about family using the API: ```bash theme={null} curl -X POST https://api.urantia.dev/search \ -H "Content-Type: application/json" \ -d '{"q": "family parenthood children home", "type": "or", "limit": 20}' ``` Get surrounding context for any quote: ```bash theme={null} curl "https://api.urantia.dev/paragraphs/84:7.28/context?window=3" ``` Read these passages in context on [UrantiaHub](https://urantiahub.com). # Urantia Book Quotes About Forgiveness - 20 Inspiring Passages Source: https://urantia.dev/quotes/forgiveness A curated collection of 20 powerful quotes about forgiveness from the Urantia Book, with paper references and context. Discover what the Urantia Papers teach about divine mercy, human forgiveness, and the transformative power of pardon. The Urantia Book teaches that forgiveness is central to both the divine character and the human spiritual journey. God's mercy is infinite, and the practice of forgiving others is essential to spiritual growth. These 20 passages explore the many dimensions of forgiveness. Search for more passages about forgiveness using the interactive demo. ## On Divine Mercy > "God is inherently kind, naturally compassionate, and everlastingly merciful." > — [Paper 2:4.1](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/2:4.1) > "The mercy of God is not that indulgent leniency which would pamper and spoil the children of time. Mercy is not a passive attitude of sympathy; it is an active program of loving favor." > — [Paper 2:4.5](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/2:4.5) > "Divine forgiveness is inevitable; it is inherent and inalienable in God's infinite understanding, in his perfect knowledge of all that concerns the mistaken judgment and erroneous choosing of the child." > — [Paper 2:4.1](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/2:4.1) > "God as a Father transcends God as a judge. The Father never angrily punishes his erring children." > — [Paper 2:6.6](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/2:6.6) > "The mercy of God is infinite; the love of the Father is never-ending. When man asks for mercy, he shall receive mercy." > — [Paper 28:6.7](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/28:6.7) ## On Forgiving Others > "When a wise man understands the inner impulses of his fellows, he will love them. And when you love your brother, you have already forgiven him." > — [Paper 174:1.5](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/174:1.5) > "Forgiveness does not have to be sought, only received as the consciousness of re-establishment of loyalty relations between the creature and the Creator." > — [Paper 89:10.6](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/89:10.6) > "Freely you have received the good things of the kingdom; freely give." > — [Paper 140:9.2](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/140:9.2) > "Jesus taught that sin is not the child of a defective nature but rather the offspring of a knowing mind dominated by an unsubmissive will." > — [Paper 148:4.6](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/148:4.6) > "How many times shall my brother sin against me, and I forgive him? And Jesus said: Not only seven times but even to seventy times and seven." > — [Paper 159:1.4](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/159:1.4) ## On Forgiveness and Love > "Love is the ancestor of all spiritual goodness, the essence of the true and the beautiful." > — [Paper 192:2.1](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/192:2.1) > "If you learn to love only those who love you, you are destined to live a narrow and circumscribed life." > — [Paper 156:5.11](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/156:5.11) > "The Father's love can become real to mortal man only by passing through that man's personality as he in turn bestows this love upon his fellows." > — [Paper 117:6.10](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/117:6.10) > "To forgive is not merely to forget; true forgiveness is the positive attitude of love that replaces the condemned motive with a higher and better one." > — [Paper 170:2.23](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/170:2.23) > "Your inability or unwillingness to forgive your fellows is the measure of your immaturity, your failure to attain adult sympathy, understanding, and love." > — [Paper 174:1.5](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/174:1.5) ## On Mercy and Justice > "Mercy is simply justice tempered by that wisdom which grows out of perfection of knowledge and the full recognition of the natural weaknesses and environmental handicaps of finite creatures." > — [Paper 2:4.1](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/2:4.1) > "Justice is the collective thought of righteousness; mercy is its personal expression." > — [Paper 10:6.18](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/10:6.18) > "In the dispensing of justice the Trinitarian courts of the universe will always render a dual verdict — one based on the facts and circumstances and another which takes into account the intent and motive." > — [Paper 10:6.18](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/10:6.18) > "God the Father judges the creature through his many representatives; but God the Son is the final arbiter of all mercy determinations." > — [Paper 33:7.8](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/33:7.8) > "Mercy is the natural and inevitable offspring of goodness and love. The good nature of a loving Father could not possibly withhold the wise ministry of mercy to each member and every group of his universe children." > — [Paper 2:4.4](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/2:4.4) ## Related Entities The Master teacher of forgiveness, who demonstrated unlimited mercy in his life and teachings. The source of all divine mercy, whose forgiveness is inherent and inalienable. The divine attribute that tempers justice with wisdom, love, and compassionate understanding. ## Related Collections * [Quotes About Love](/quotes/love) * [Quotes About God](/quotes/god) * [Quotes About Peace](/quotes/peace) * [Quotes About Service](/quotes/service) ## Find More Quotes Search for more passages about forgiveness using the API: ```bash theme={null} curl -X POST https://api.urantia.dev/search \ -H "Content-Type: application/json" \ -d '{"q": "forgiveness mercy pardon divine", "type": "or", "limit": 20}' ``` Get surrounding context for any quote: ```bash theme={null} curl "https://api.urantia.dev/paragraphs/174:1.5/context?window=3" ``` Read these passages in context on [UrantiaHub](https://urantiahub.com). # Urantia Book Quotes About God - 20 Inspiring Passages Source: https://urantia.dev/quotes/god A curated collection of 20 powerful quotes about God from the Urantia Book, with paper references and context. Explore what the Urantia Papers teach about the Universal Father, his nature, and his relationship to humanity. The Urantia Book devotes its opening papers to revealing the nature and character of God — the Universal Father. These 20 passages offer a glimpse into the majesty, personality, and infinite love of the First Source and Center of all things. Search for more passages about God using the interactive demo. ## On the Nature of God > "God is the first truth and the last fact; therefore does all truth take origin in him, while all facts exist relative to him." > — [Paper 102:7.10](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/102:7.10) > "God is spirit — spirit personality; man is also a spirit — potential spirit personality." > — [Paper 1:6.8](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/1:6.8) > "The Universal Father is the God of all creation, the First Source and Center of all things and beings." > — [Paper 1:0.1](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/1:0.1) > "In God, man lives, moves, and has his being." > — [Paper 1:1.2](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/1:1.2) > "God is not hiding from any of his creatures. He is unapproachable only because he dwells in a light which no material creature can approach." > — [Paper 1:3.3](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/1:3.3) ## On Knowing God > "To know God as he is, you must look to the Son; to know the Son, you must behold the Father." > — [Paper 2:0.1](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/2:0.1) > "The existence of God can never be proved by scientific experiment or by the pure reason of logical deduction. God can be realized only in the realms of human experience." > — [Paper 1:2.7](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/1:2.7) > "The religious experience of knowing God is the only reality that cannot be outgrown." > — [Paper 100:1.5](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/100:1.5) > "Man goes forth searching for a friend while that very friend lives within his own heart." > — [Paper 3:1.4](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/3:1.4) > "Of God, the most inescapable of all presences, the most real of all facts, the most living of all truths, the most loving of all friends, and the most divine of all values, we have the right to be the most certain of all universe experiences." > — [Paper 102:7.10](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/102:7.10) ## On God's Relationship to Man > "In every child lives a fraction of the Father. God enjoys a direct and unbroken communication with every soul." > — [Paper 5:1.8](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/5:1.8) > "God is not only the determiner of destiny; he is man's eternal destination." > — [Paper 5:4.3](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/5:4.3) > "The Father desires all his creatures to be in personal communion with him." > — [Paper 5:1.8](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/5:1.8) > "The Universal Father never imposes any form of arbitrary recognition, formal worship, or slavish service upon the intelligent will creatures of the universes." > — [Paper 1:1.2](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/1:1.2) > "Your short sojourn on Urantia, on this sphere of mortal infancy, is only a single link, the very first in the long chain that is to stretch across universes and through the eternal ages." > — [Paper 32:5.1](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/32:5.1) ## On the Love of God > "God is inherently kind, naturally compassionate, and everlastingly merciful." > — [Paper 2:4.1](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/2:4.1) > "The love of the Father absolutely individualizes each personality as a unique child of the Universal Father." > — [Paper 12:7.9](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/12:7.9) > "God loves each individual as an individual child in the heavenly family." > — [Paper 5:6.9](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/5:6.9) > "The infinite love of God is not secondary to anything in the divine nature." > — [Paper 2:6.9](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/2:6.9) > "When man consecrates his will to the doing of the Father's will, when man gives God all that he has, then does God make that man more than he is." > — [Paper 117:4.14](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/117:4.14) ## Related Entities The First Source and Center of all reality, the infinite and eternal God. The Second Source and Center, the spiritual expression of the Father's nature. The Third Source and Center, the God of Action and universal mind ministry. ## Related Collections * [Quotes About Love](/quotes/love) * [Quotes About Faith](/quotes/faith) * [Quotes About Truth](/quotes/truth) * [Quotes About Prayer](/quotes/prayer) ## Find More Quotes Search for more passages about God using the API: ```bash theme={null} curl -X POST https://api.urantia.dev/search \ -H "Content-Type: application/json" \ -d '{"q": "God Universal Father divine nature", "type": "or", "limit": 20}' ``` Get surrounding context for any quote: ```bash theme={null} curl "https://api.urantia.dev/paragraphs/1:0.1/context?window=3" ``` Read these passages in context on [UrantiaHub](https://urantiahub.com). # Urantia Book Quotes About Hope - 20 Inspiring Passages Source: https://urantia.dev/quotes/hope A curated collection of 20 powerful quotes about hope from the Urantia Book, with paper references and context. Discover what the Urantia Papers teach about eternal hope, spiritual assurance, and optimism for the future. The Urantia Book presents hope not as wishful thinking but as a well-founded spiritual assurance rooted in the reality of God's plan. Hope is the natural companion of faith — the forward-looking confidence that sustains mortal beings on their eternal journey. Search for more passages about hope using the interactive demo. ## On Eternal Hope > "There is in the mind of God a plan which embraces every creature of all his vast domains, and this plan is an eternal purpose of boundless opportunity, unlimited progress, and endless life." > — [Paper 32:5.7](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/32:5.7) > "The goal of eternity is ahead! The adventure of divinity attainment lies before you! The race for perfection is on!" > — [Paper 32:5.8](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/32:5.8) > "The mortal career, the soul's evolution, is not so much a probation as an education. Faith in the survival of supreme values is the core of religion." > — [Paper 101:10.9](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/101:10.9) > "Eternal survival of personality is wholly dependent on the choosing of the mortal mind, whose decisions determine the survival potential of the immortal soul." > — [Paper 5:5.13](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/5:5.13) > "The great universe is not only a material creation of physical grandeur, spirit sublimity, and intellectual magnitude, it is also a magnificent and responsive living organism." > — [Paper 116:7.1](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/116:7.1) ## On Hope and Faith > "Faith most willingly carries reason along as far as reason can go and then goes on with wisdom to the full philosophic limit; and then it dares to launch out upon the limitless and never-ending universe journey in the sole company of TRUTH." > — [Paper 103:9.7](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/103:9.7) > "The God-knowing individual is not one who is blind to the difficulties or unmindful of the obstacles which stand in the way of finding God in the maze of superstition, tradition, and materialistic tendencies." > — [Paper 101:10.9](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/101:10.9) > "If you truly believe in God — by faith know him and love him — do not permit the reality of such an experience to be in any way lessened." > — [Paper 196:0.3](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/196:0.3) > "Human things must be known in order to be loved, but divine things must be loved in order to be known." > — [Paper 102:1.1](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/102:1.1) > "Religion inspires man to live courageously and joyfully on the face of the earth; it joins patience with passion, insight to zeal, sympathy with power, and ideals with energy." > — [Paper 99:4.1](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/99:4.1) ## On Hope in Adversity > "This world is only a bridge; you may pass over it, but you should not think to build a dwelling place upon it." > — [Paper 156:2.1](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/156:2.1) > "You cannot perceive spiritual truth until you feelingly experience it, and many truths are not really felt except in adversity." > — [Paper 48:7.18](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/48:7.18) > "To a God-knowing kingdom believer, what does it matter if all things earthly crash? Temporal securities are vulnerable, but spiritual sureties are impregnable." > — [Paper 100:2.7](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/100:2.7) > "Difficulties may challenge mediocrity and defeat the fearful, but they only stimulate the true children of the Most Highs." > — [Paper 48:7.7](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/48:7.7) > "When the flood tides of human adversity, selfishness, cruelty, hate, malice, and jealousy beat about the mortal soul, you may rest in the assurance that there is one inner bastion, the citadel of the spirit, which is absolutely unassailable." > — [Paper 100:2.7](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/100:2.7) ## On the Promise of the Future > "You are destined to live a narrow and circumscribed life if you learn to love only those who love you. But the Father loves all his children without condition." > — [Paper 156:5.11](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/156:5.11) > "The entire organization of high spirits, angelic hosts, and midway fellows is enthusiastically devoted to the furtherance of the Paradise plan for the progressive ascension and perfection attainment of evolutionary mortals." > — [Paper 77:9.12](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/77:9.12) > "In the next world you will be asked to give an account of the endowments and stewardships of this world. Whether inherent talents are few or many, a just and merciful reckoning must be faced." > — [Paper 176:3.8](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/176:3.8) > "The morontia life, extending as it does over the various stages of the local universe career, is the only possible approach by which material mortals could attain the threshold of the spirit world." > — [Paper 48:0.3](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/48:0.3) > "Paradise is the eternal center of the universe of universes and the abiding place of the Universal Father, the Eternal Son, the Infinite Spirit, and their divine co-ordinates and associates." > — [Paper 11:0.1](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/11:0.1) ## Related Entities The eternal source of hope, whose infinite love and divine plan ensure boundless opportunity for every creature. The living embodiment of hope, whose life and resurrection demonstrate the reality of eternal survival. The comforting spiritual presence that sustains hope and guides believers toward truth. ## Related Collections * [Quotes About Faith](/quotes/faith) * [Quotes About Courage](/quotes/courage) * [Quotes About Peace](/quotes/peace) * [Quotes About God](/quotes/god) ## Find More Quotes Search for more passages about hope using the API: ```bash theme={null} curl -X POST https://api.urantia.dev/search \ -H "Content-Type: application/json" \ -d '{"q": "hope eternal assurance future", "type": "or", "limit": 20}' ``` Get surrounding context for any quote: ```bash theme={null} curl "https://api.urantia.dev/paragraphs/32:5.7/context?window=3" ``` Read these passages in context on [UrantiaHub](https://urantiahub.com). # Urantia Book Quotes About Jesus - 20 Inspiring Passages Source: https://urantia.dev/quotes/jesus A curated collection of 20 powerful quotes about Jesus from the Urantia Book, with paper references and context. Discover what the Urantia Papers reveal about the life, character, and teachings of Jesus of Nazareth. Part IV of the Urantia Book presents the most detailed account of the life and teachings of Jesus ever assembled. These 20 passages illuminate his character, his message, and the transformative power of his gospel of the kingdom. Search for more passages about Jesus using the interactive demo. ## On the Character of Jesus > "Jesus was the perfectly unified human personality. And today, as in Galilee, he continues to unify mortal experience and to coordinate human endeavors." > — [Paper 100:7.18](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/100:7.18) > "The unique feature of the Master's personality was not so much its perfection as its symmetry, its exquisite and balanced unification." > — [Paper 100:7.1](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/100:7.1) > "Jesus was the one truly free man who has ever lived on earth." > — [Paper 100:7.11](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/100:7.11) > "He was reasonable, approachable, practical, and characterized by good common sense. He was kind but firm, gentle yet decisive." > — [Paper 100:7.2](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/100:7.2) > "Of Jesus it was truly said, 'He trusted God.' As a man among men he most sublimely trusted the Father in heaven." > — [Paper 196:0.1](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/196:0.1) ## On Jesus' Teachings > "The religion of Jesus is the most dynamic influence ever to activate the human race." > — [Paper 99:5.3](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/99:5.3) > "Jesus did not commit the error of teaching too much. He did not precipitate confusion in his audiences by the presentation of truth too far beyond their capacity to comprehend." > — [Paper 149:3.1](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/149:3.1) > "The Master made it clear that the kingdom of heaven must begin with, and be centered in, the dual concept of the truth of the fatherhood of God and the correlated fact of the brotherhood of man." > — [Paper 170:2.1](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/170:2.1) > "He sought to make clear that he desired his children on earth to live as though they were already citizens of the completed heavenly kingdom." > — [Paper 140:8.25](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/140:8.25) > "The gospel of the kingdom is concerned with the love of the Father and the service of his children." > — [Paper 193:0.4](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/193:0.4) ## On Faith and the Kingdom > "Jesus taught that, by faith, the believer enters the kingdom now." > — [Paper 170:2.20](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/170:2.20) > "The kingdom of heaven is within you' was probably the greatest pronouncement Jesus ever made." > — [Paper 195:10.4](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/195:10.4) > "To Jesus, in the teachings about the kingdom, the real body of believers — the kingdom of God — was the invisible spiritual fellowship of faith believers." > — [Paper 170:5.11](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/170:5.11) > "The entrance to the Father's kingdom is wholly free, but progress — growth in grace — is essential to continuance therein." > — [Paper 150:5.2](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/150:5.2) > "When you enter the kingdom, you are reborn. You cannot teach the deep things of the spirit to those who have been born only of the flesh; first see that men are born of the spirit before you seek to instruct them in the advanced ways of the spirit." > — [Paper 141:6.4](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/141:6.4) ## On Living the Divine Will > "Jesus' earthly life was devoted to one great purpose — doing the Father's will, living the human life religiously and by faith." > — [Paper 196:0.14](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/196:0.14) > "The doing of the will of God is nothing more or less than an exhibition of creature willingness to share the inner life with God." > — [Paper 111:5.1](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/111:5.1) > "It is not so much what you learn in this first life; it is the experience of living this life that is important." > — [Paper 39:4.13](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/39:4.13) > "He taught men to place a high value upon themselves in time and in eternity." > — [Paper 196:2.10](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/196:2.10) > "Follow me' was the invitation Jesus offered to every man who ever lived on earth." > — [Paper 196:1.3](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/196:1.3) ## Related Entities The Son of Man and Son of God, whose life and teachings form the heart of Part IV. The Creator Son whose bestowal as Jesus completed his sevenfold mission. The spirit of Jesus bestowed at Pentecost to guide all believers into truth. ## Related Collections * [Quotes About Faith](/quotes/faith) * [Quotes About Love](/quotes/love) * [Quotes About Truth](/quotes/truth) * [Quotes About Service](/quotes/service) ## Find More Quotes Search for more passages about Jesus using the API: ```bash theme={null} curl -X POST https://api.urantia.dev/search \ -H "Content-Type: application/json" \ -d '{"q": "Jesus Master teachings kingdom", "type": "or", "limit": 20}' ``` Get surrounding context for any quote: ```bash theme={null} curl "https://api.urantia.dev/paragraphs/196:0.1/context?window=3" ``` Read these passages in context on [UrantiaHub](https://urantiahub.com). # Urantia Book Quotes About Love - 20 Inspiring Passages Source: https://urantia.dev/quotes/love A curated collection of 20 powerful quotes about love from the Urantia Book, with paper references and context. Discover what the Urantia Papers teach about divine love, human affection, and the Father's love. The Urantia Book presents love as the dominant reality of the universe — the very nature of God and the highest relationship. These 20 passages reveal the depth and breadth of the Urantia Papers' teachings on love. Search for more passages about love using the interactive demo. ## On the Nature of Divine Love > "God is love, but love is not God." > — [Paper 2:5.10](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/2:5.10) > "Love is the desire to do good to others." > — [Paper 56:10.21](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/56:10.21) > "The Father's love can become real to mortal man only by passing through that man's personality as he in turn bestows this love upon his fellows." > — [Paper 117:6.10](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/117:6.10) > "In the true meaning of the word, love connotes mutual regard of whole personalities." > — [Paper 112:2.7](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/112:2.7) > "Love is the secret of beneficial association between personalities." > — [Paper 12:9.2](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/12:9.2) ## On God's Love for Humanity > "The love of God is an intelligent and farseeing parental affection." > — [Paper 2:6.2](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/2:6.2) > "God is divinely kind to sinners. When rebels return to righteousness, they are mercifully received." > — [Paper 2:5.4](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/2:5.4) > "The infinite love of God is not secondary to anything in the divine nature. It is wrong to think of God as being coaxed into loving his children." > — [Paper 2:6.9](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/2:6.9) > "When man loses sight of the love of a personal God, the kingdom of God becomes merely the kingdom of good." > — [Paper 2:6.2](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/2:6.2) > "The affectionate heavenly Father, whose spirit indwells his children on earth, is not a divided personality — one of justice and one of mercy." > — [Paper 2:6.6](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/2:6.6) ## On Human Love and Relationships > "Love is the greatest of all spirit realities. Truth is a liberating revelation, but love is the supreme relationship." > — [Paper 143:1.4](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/143:1.4) > "You cannot truly love your fellows by a mere act of the will. Love is only born of thoroughgoing understanding of your neighbor's motives and sentiments." > — [Paper 100:4.6](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/100:4.6) > "Love, unselfishness, must undergo a constant and living readaptative interpretation of relationships in accordance with the leading of the Spirit of Truth." > — [Paper 180:5.10](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/180:5.10) > "It is not so important to love all men today as it is that each day you learn to love one more human being." > — [Paper 100:4.6](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/100:4.6) > "When a wise man understands the inner impulses of his fellows, he will love them. And when you love your brother, you have already forgiven him." > — [Paper 174:1.5](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/174:1.5) ## On Love in Action > "Love is the ancestor of all spiritual goodness, the essence of the true and the beautiful." > — [Paper 192:2.1](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/192:2.1) > "If you learn to love only those who love you, you are destined to live a narrow and circumscribed life." > — [Paper 156:5.11](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/156:5.11) > "The religion of Jesus demands living and spiritual experience, not merely intellectual beliefs or conventional morals." > — [Paper 160:5.12](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/160:5.12) > "Service — purposeful service, not slavery — produces the highest satisfaction and is expressive of the divinest dignity." > — [Paper 28:6.17](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/28:6.17) > "Spiritual growth is mutually stimulated by intimate association with other religionists. Love supplies the soil for religious growth." > — [Paper 100:0.2](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/100:0.2) ## Related Entities The source of all love — explore the First Source and Center. Jesus' spirit gift that guides believers in the way of love. The supreme revelation of the Father's love to humanity. ## Related Collections * [Quotes About Faith](/quotes/faith) * [Quotes About Forgiveness](/quotes/forgiveness) * [Quotes About Service](/quotes/service) * [Quotes About God](/quotes/god) ## Find More Quotes Search for more passages about love using the API: ```bash theme={null} curl -X POST https://api.urantia.dev/search \ -H "Content-Type: application/json" \ -d '{"q": "love divine affection", "type": "or", "limit": 20}' ``` Get surrounding context for any quote: ```bash theme={null} curl "https://api.urantia.dev/paragraphs/2:5.10/context?window=3" ``` Read these passages in context on [UrantiaHub](https://urantiahub.com). # Urantia Book Quotes About Peace - 20 Inspiring Passages Source: https://urantia.dev/quotes/peace A curated collection of 20 powerful quotes about peace from the Urantia Book, with paper references and context. Explore what the Urantia Papers teach about inner peace, spiritual tranquility, and peace with God. The Urantia Book describes peace as far more than the absence of conflict. True peace is a positive spiritual state — the deep inner tranquility that comes from a settled relationship with God and wholehearted trust in his overcare. Search for more passages about peace using the interactive demo. ## On Inner Peace > "One of the most amazing earmarks of religious living is that dynamic and sublime peace, that peace which passes all human understanding, that cosmic poise which betokens the absence of all doubt and turmoil." > — [Paper 100:6.6](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/100:6.6) > "The peace of Jesus' mind was founded on an absolute human faith — the genuine trust of a human child in the divine overcare and personal security of the heavenly Father." > — [Paper 181:1.8](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/181:1.8) > "When the flood tides of human adversity, selfishness, cruelty, hate, malice, and jealousy beat about the mortal soul, you may rest in the assurance that there is one inner bastion, the citadel of the spirit, which is absolutely unassailable." > — [Paper 100:2.7](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/100:2.7) > "Health, sanity, and happiness are integrations of truth, beauty, and goodness as they are blended in human experience." > — [Paper 2:7.11](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/2:7.11) > "The advances of true civilization are all born in this inner world of mankind. It is only the inner life that is truly creative." > — [Paper 111:4.3](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/111:4.3) ## On Peace with God > "The peace which Jesus gives his disciples is the very peace and assurance which he has received through faith in God the Father." > — [Paper 181:1.6](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/181:1.6) > "The peace which Michael gives to the children of earth is the very peace which filled his own soul when he lived the mortal life in the flesh and on this very world." > — [Paper 181:1.7](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/181:1.7) > "Peace be upon you. That which my Father sent me into the world to establish belongs not to a race, a nation, or to a special group of teachers or preachers. This gospel of the kingdom belongs to both Jew and gentile." > — [Paper 191:4.3](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/191:4.3) > "The will of God is the way of God, partnership with the choice of God in the face of any potential alternative. To do the will of God is the secret of survival and of eternal perfection." > — [Paper 130:2.7](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/130:2.7) > "When man consecrates his will to the doing of the Father's will, when man gives God all that he has, then does God make that man more than he is." > — [Paper 117:4.14](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/117:4.14) ## On Peace and the Spirit > "The spirit of the divine presence in man constitutes the indwelling of the spirit of peace and truth." > — [Paper 34:6.13](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/34:6.13) > "The spirit never drives, only leads. If you are a willing learner, if you want to attain spirit levels and reach divine heights, the spirit will gently lead you along the way to sonship and spiritual progress." > — [Paper 34:6.11](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/34:6.11) > "The divine spirit makes contact with mortal man, not by feelings or emotions, but in the realm of the highest and most spiritualized thinking." > — [Paper 101:1.3](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/101:1.3) > "Spiritual growth is first an awakening to needs, next a discernment of meanings, and then a discovery of values." > — [Paper 100:2.2](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/100:2.2) > "The consciousness of the spirit domination of a human life is presently attended by an increasing exhibition of the characteristics of the Spirit in the life reactions of such a spirit-led mortal." > — [Paper 34:6.13](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/34:6.13) ## On Peace in the World > "Peace will not come to Urantia until every so-called sovereign nation surrenders its power to make war into the hands of a representative government of all mankind." > — [Paper 134:5.10](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/134:5.10) > "Wars will never bring peace on earth. Armies do not permanently solve problems; they merely create new ones." > — [Paper 134:5.9](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/134:5.9) > "The brotherhood of man is founded on the fatherhood of God. The family of God is derived from the love of God — God is love." > — [Paper 134:4.1](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/134:4.1) > "Some degree of moral affinity and spiritual harmony is essential to friendship between two persons; a loving personality can hardly reveal himself to a loveless person." > — [Paper 1:6.5](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/1:6.5) > "The hope of modern civilization will be forever maintained if the statesmen of the world become wise enough to sustain an enduring peace based on the sovereignty of mankind." > — [Paper 134:6.9](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/134:6.9) ## Related Entities The Prince of Peace, whose inner tranquility exemplified the peace that comes from total trust in the Father. The spiritual comforter that brings peace to the hearts of believers and guides them toward divine harmony. The source of all true peace, whose overcare provides the ultimate foundation for spiritual tranquility. ## Related Collections * [Quotes About Faith](/quotes/faith) * [Quotes About Hope](/quotes/hope) * [Quotes About Love](/quotes/love) * [Quotes About Prayer](/quotes/prayer) ## Find More Quotes Search for more passages about peace using the API: ```bash theme={null} curl -X POST https://api.urantia.dev/search \ -H "Content-Type: application/json" \ -d '{"q": "peace tranquility spiritual calm", "type": "or", "limit": 20}' ``` Get surrounding context for any quote: ```bash theme={null} curl "https://api.urantia.dev/paragraphs/100:6.6/context?window=3" ``` Read these passages in context on [UrantiaHub](https://urantiahub.com). # Urantia Book Quotes About Prayer - 20 Inspiring Passages Source: https://urantia.dev/quotes/prayer A curated collection of 20 powerful quotes about prayer from the Urantia Book, with paper references and context. Discover what the Urantia Papers teach about prayer, worship, and spiritual communion with God. The Urantia Book presents prayer as far more than petition — it is the soul's communion with God, a living channel of spiritual communication. These 20 passages illuminate the nature, purpose, and power of prayer as taught in the Urantia Papers. Search for more passages about prayer using the interactive demo. ## On the Nature of Prayer > "Prayer is not a technique of escape from conflict but rather a stimulus to growth in the very face of conflict." > — [Paper 91:8.6](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/91:8.6) > "Words are irrelevant to prayer; they are merely the intellectual channel in which the river of spiritual supplication may chance to flow." > — [Paper 91:8.12](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/91:8.12) > "Prayer is the sincere and longing look of the child to its spirit Father; it is a psychologic process of exchanging the human will for the divine will." > — [Paper 144:2.2](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/144:2.2) > "Prayer is the breath of the soul and should lead you to be persistent in your attempt to ascertain the Father's will." > — [Paper 144:2.3](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/144:2.3) > "Prayer is not an evolution of magic; they each arose independently. Magic was an attempt to adjust Deity to conditions; prayer is the effort to adjust the personality to the will of Deity." > — [Paper 91:8.2](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/91:8.2) ## On Prayer and Worship > "Worship is the act of a part identifying itself with the Whole; the finite with the Infinite; the son with the Father." > — [Paper 143:7.8](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/143:7.8) > "Worship is the highest privilege and the first duty of all created intelligences." > — [Paper 27:7.1](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/27:7.1) > "Prayer is self-reminding — sublime thinking; worship is self-forgetting — superthinking." > — [Paper 143:7.7](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/143:7.7) > "True worship asks nothing and expects nothing for the worshiper. We do not worship the Father because of anything we may derive from such veneration." > — [Paper 5:3.3](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/5:3.3) > "When prayer seeks nothing for the one who prays nor anything for his fellows, then such attitudes of the soul tend to the levels of true worship." > — [Paper 91:4.3](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/91:4.3) ## On Effective Prayer > "If you would engage in effective praying, you should bear in mind the laws of prevailing petitions." > — [Paper 91:9.1](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/91:9.1) > "You must have honestly exhausted the human capacity for human adjustment. You must have been industrious." > — [Paper 91:9.3](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/91:9.3) > "Do not be so slothful as to ask God to solve your difficulties, but never hesitate to ask him for wisdom and spiritual strength to guide and sustain you." > — [Paper 91:6.5](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/91:6.5) > "Prayer must never be so prostituted as to become a substitute for action. All ethical prayer is a stimulus to action and a guide for the progressive striving toward idealistic goals." > — [Paper 91:4.2](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/91:4.2) > "Be not constantly overanxious about your common needs. Do not apprehend concerning the problems of your earthly existence, but in all these things by prayer and supplication, with the spirit of sincere thanksgiving, let your needs be spread out before your Father." > — [Paper 146:2.16](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/146:2.16) ## On Jesus' Prayer Life > "Jesus never prayed as a religious duty. To him prayer was a sincere expression of spiritual attitude, a declaration of soul loyalty." > — [Paper 196:0.10](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/196:0.10) > "Jesus brought to God, as a man of the realm, the greatest of all offerings: the consecration and dedication of his own will to the majestic service of doing the divine will." > — [Paper 196:0.10](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/196:0.10) > "Jesus prayed not to escape tribulation but to strengthen himself for the courage to face all of his manifold trials." > — [Paper 144:3.17](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/144:3.17) > "The secret of his unparalleled religious life was this consciousness of the presence of God; and he attained it by intelligent prayer and sincere worship — unbroken communion with God." > — [Paper 196:0.10](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/196:0.10) > "It was the habit of Jesus two out of every three nights to go out alone to commune with the Father in heaven." > — [Paper 144:3.13](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/144:3.13) ## Related Entities The divine recipient of all true prayer and worship, the First Source and Center. The Master whose prayer life exemplified perfect communion with the Father. The spirit presence that guides believers into deeper spiritual communion. ## Related Collections * [Quotes About Faith](/quotes/faith) * [Quotes About God](/quotes/god) * [Quotes About Wisdom](/quotes/wisdom) * [Quotes About Peace](/quotes/peace) ## Find More Quotes Search for more passages about prayer using the API: ```bash theme={null} curl -X POST https://api.urantia.dev/search \ -H "Content-Type: application/json" \ -d '{"q": "prayer worship communion God", "type": "or", "limit": 20}' ``` Get surrounding context for any quote: ```bash theme={null} curl "https://api.urantia.dev/paragraphs/91:8.6/context?window=3" ``` Read these passages in context on [UrantiaHub](https://urantiahub.com). # Urantia Book Quotes About Service - 20 Inspiring Passages Source: https://urantia.dev/quotes/service A curated collection of 20 powerful quotes about service from the Urantia Book, with paper references and context. Discover what the Urantia Papers teach about unselfish service, ministry to others, and the joy of serving. Service is one of the most prominent themes in the Urantia Book. The universe itself is described as a vast service organization, and Jesus' life is presented as the supreme example of loving, unselfish ministry to others. Search for more passages about service using the interactive demo. ## On the Joy of Service > "Service — purposeful service, not slavery — produces the highest satisfaction and is expressive of the divinest dignity." > — [Paper 28:6.17](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/28:6.17) > "When man dedicates his will to the doing of the Father's will, when man gives God all that he has, then does God make that man more than he is." > — [Paper 117:4.14](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/117:4.14) > "The weak indulge in resolutions, but the strong act. Life is but a day's work — do it well. The act is ours; the consequences God's." > — [Paper 48:7.13](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/48:7.13) > "The measure of the spiritual capacity of the evolving soul is your faith in truth and your love for man." > — [Paper 156:5.17](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/156:5.17) > "Religion inspires man to live courageously and joyfully on the face of the earth; it joins patience with passion, insight to zeal, sympathy with power, and ideals with energy." > — [Paper 99:4.1](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/99:4.1) ## On Serving Others > "You cannot stand still in the affairs of the eternal kingdom. My Father requires all his children to grow in grace and in a knowledge of the truth." > — [Paper 176:3.5](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/176:3.5) > "What I require of you, my apostles, is spirit unity — and that you can experience in the joy of your united dedication to the wholehearted doing of the will of my Father in heaven." > — [Paper 141:5.1](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/141:5.1) > "In everything do to others what you would have them do to you, for this sums up the law and the prophets." > — [Paper 140:3.15](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/140:3.15) > "True religion is a living love, a life of service. The religionist's detachment from much that is purely temporal and trivial never leads to social isolation." > — [Paper 100:6.5](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/100:6.5) > "Loving service, unselfish devotion, courageous loyalty, sincere fairness, enlightened honesty, undying hope, confiding trust, merciful ministry — these are the fruits of the divine spirit." > — [Paper 193:2.2](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/193:2.2) ## On Service and Love > "Love is the desire to do good to others." > — [Paper 56:10.21](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/56:10.21) > "The Father's love can become real to mortal man only by passing through that man's personality as he in turn bestows this love upon his fellows." > — [Paper 117:6.10](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/117:6.10) > "If you learn to love only those who love you, you are destined to live a narrow and circumscribed life." > — [Paper 156:5.11](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/156:5.11) > "It is not so important to love all men today as it is that each day you learn to love one more human being." > — [Paper 100:4.6](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/100:4.6) > "When a wise man understands the inner impulses of his fellows, he will love them. And when you love your brother, you have already forgiven him." > — [Paper 174:1.5](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/174:1.5) ## On the Ministry of Jesus > "Jesus' earthly life was devoted to one great purpose — doing the Father's will, living the human life religiously and by faith." > — [Paper 196:0.14](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/196:0.14) > "He went about doing good, for God was in him. Jesus was not a stoic; he was a positivist. He always did positive good." > — [Paper 100:7.9](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/100:7.9) > "Jesus did not come to minister to temporal needs only; he came to reveal his heavenly Father to the children of earth, while he sought to lead the earth children to join him in a sincere effort to live so as to do the will of the Father in heaven." > — [Paper 171:7.9](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/171:7.9) > "The religion of Jesus fosters the highest type of human civilization in that it creates the highest type of spiritual personality and proclaims the sacredness of that person." > — [Paper 195:10.17](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/195:10.17) > "In winning souls for the Master, it is not the first mile of compulsion, duty, or convention that will transform man and his world, but rather the second mile of free service and liberty-loving devotion." > — [Paper 195:10.5](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/195:10.5) ## Related Entities The supreme example of loving service, whose entire life was devoted to ministering to others. Guardian angels who tirelessly serve mortal beings, guiding and protecting them on their ascension journey. The ultimate servant-creator whose love flows outward to all creatures through the vast ministry of the universe. ## Related Collections * [Quotes About Love](/quotes/love) * [Quotes About Faith](/quotes/faith) * [Quotes About Forgiveness](/quotes/forgiveness) * [Quotes About Family](/quotes/family) ## Find More Quotes Search for more passages about service using the API: ```bash theme={null} curl -X POST https://api.urantia.dev/search \ -H "Content-Type: application/json" \ -d '{"q": "service ministry unselfish serving", "type": "or", "limit": 20}' ``` Get surrounding context for any quote: ```bash theme={null} curl "https://api.urantia.dev/paragraphs/28:6.17/context?window=3" ``` Read these passages in context on [UrantiaHub](https://urantiahub.com). # Urantia Book Quotes About the Soul - 20 Inspiring Passages Source: https://urantia.dev/quotes/soul A curated collection of 20 powerful quotes about the soul from the Urantia Book, with paper references and context. Explore what the Urantia Papers teach about the morontia soul, spiritual growth, and personality survival. The Urantia Book offers a unique and detailed account of the human soul — a new creation born of the partnership between the mortal mind and the indwelling Thought Adjuster. These 20 passages reveal the origin, growth, and eternal destiny of the soul. Search for more passages about the soul using the interactive demo. ## On the Nature of the Soul > "The soul of man is an experiential acquirement. As a mortal creature chooses to 'do the will of the Father in heaven,' so the indwelling spirit becomes the father of a new reality in human experience." > — [Paper 111:2.2](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/111:2.2) > "The human mind does not create real values; human experience does not yield universe insight. Concerning insight, the recognition of moral values and the discernment of spiritual meanings, all that the human mind can do is to discover, recognize, interpret, and choose." > — [Paper 111:3.6](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/111:3.6) > "The soul is the self-reflective, truth-discerning, and spirit-perceiving part of man which forever elevates the human being above the level of the animal world." > — [Paper 133:6.5](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/133:6.5) > "The mortal mind is the cosmic loom that carries the morontia fabric into which the indwelling Thought Adjuster threads the spirit patterns." > — [Paper 111:2.2](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/111:2.2) > "The material self has personality and identity, temporal identity; the prepersonal spirit Adjuster also has identity, eternal identity. This material personality and this spirit prepersonality are capable of so uniting their creative attributes as to bring into existence the surviving identity of the immortal soul." > — [Paper 112:2.16](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/112:2.16) ## On Soul Growth > "Spiritual growth is first an awakening to needs, next a discernment of meanings, and then a discovery of values." > — [Paper 100:2.2](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/100:2.2) > "The soil essential for religious growth presupposes a progressive life of self-realization, the co-ordination of natural propensities, the exercise of curiosity and the enjoyment of reasonable adventure." > — [Paper 100:1.5](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/100:1.5) > "Every decision you make either impedes or facilitates the function of the Adjuster. Equally do these very decisions determine your advancement in the circles of human achievement." > — [Paper 110:6.6](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/110:6.6) > "The evolving soul is not made divine by what it does, but by what it strives to do." > — [Paper 111:1.5](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/111:1.5) > "Man does not attain the divine heights by the unaided efforts of his own finite mind, but rather by the co-operation of the mortal mind and the indwelling Adjuster." > — [Paper 111:1.2](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/111:1.2) ## On the Soul and the Adjuster > "The Thought Adjuster is the cosmic window through which the finite creature can faith-glimpse the certainties and divinities of limitless Deity." > — [Paper 103:0.1](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/103:0.1) > "The Mystery Monitor is the will of God abroad in the universes." > — [Paper 108:4.2](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/108:4.2) > "These faithful custodians of the future career unfailingly duplicate every mental creation with a spiritual counterpart; they are thus slowly and surely re-creating you as you really are — only spiritually." > — [Paper 108:6.5](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/108:6.5) > "The Adjuster is man's eternity possibility; man is the Adjuster's personality possibility." > — [Paper 107:6.2](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/107:6.2) > "Throughout all eternity you will look back on this sphere of mortal nativity as the place where you began — where life started, where you and your divine Adjuster first joined in your eternal partnership." > — [Paper 47:10.2](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/47:10.2) ## On Survival and Destiny > "Eternal survival of personality is wholly dependent on the choosing of the mortal mind, whose decisions determine the survival potential of the immortal soul." > — [Paper 112:5.5](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/112:5.5) > "Man's choosing between good and evil is influenced not only by the keenness of his moral nature but also by such influences as ignorance, immaturity, and delusion." > — [Paper 108:2.2](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/108:2.2) > "Personality is changeless in the presence of change. What you do changes; what you are, as a personality, is constant." > — [Paper 112:0.9](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/112:0.9) > "Death adds nothing to the intellectual possession or to the spiritual endowment, but it does add to the experiential status the consciousness of survival." > — [Paper 47:3.7](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/47:3.7) > "The human personality can truly destroy the individual self, and such a self-chosen creature becomes as though he had never been." > — [Paper 112:3.2](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/112:3.2) ## Related Entities The divine indwelling fragments of the Father that partner with the mortal mind to create the soul. The transitional reality between the material and spiritual, where the soul continues its growth. The source of the Thought Adjusters and the ultimate destiny of every surviving soul. ## Related Collections * [Quotes About Faith](/quotes/faith) * [Quotes About God](/quotes/god) * [Quotes About Death](/quotes/death) * [Quotes About Truth](/quotes/truth) ## Find More Quotes Search for more passages about the soul using the API: ```bash theme={null} curl -X POST https://api.urantia.dev/search \ -H "Content-Type: application/json" \ -d '{"q": "soul morontia Adjuster survival", "type": "or", "limit": 20}' ``` Get surrounding context for any quote: ```bash theme={null} curl "https://api.urantia.dev/paragraphs/111:2.2/context?window=3" ``` Read these passages in context on [UrantiaHub](https://urantiahub.com). # Urantia Book Quotes About Truth - 20 Inspiring Passages Source: https://urantia.dev/quotes/truth A curated collection of 20 powerful quotes about truth from the Urantia Book, with paper references and context. Discover what the Urantia Papers teach about truth, revelation, spiritual insight, and the pursuit of wisdom. The Urantia Book presents truth not as a static collection of facts but as a living, dynamic experience. These 20 passages explore the nature of truth, its relationship to beauty and goodness, and the human quest to discover and live it. Search for more passages about truth using the interactive demo. ## On the Nature of Truth > "Truth is coherent, beauty attractive, goodness stabilizing. And when these values of that which is real are co-ordinated in personality experience, the result is a high order of love conditioned by wisdom and qualified by loyalty." > — [Paper 2:7.12](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/2:7.12) > "Truth is always a revelation: autorevelation when it emerges as a result of the work of the indwelling Adjuster; epochal revelation when it is presented by the function of some other celestial agency, group, or personality." > — [Paper 101:4.3](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/101:4.3) > "Things are time conditioned, but truth is timeless. The more truth you know, the more truth you are, the more of the past you can understand and of the future you can comprehend." > — [Paper 118:3.2](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/118:3.2) > "Truth cannot be defined with words, only by living. Truth is always more than knowledge." > — [Paper 132:3.2](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/132:3.2) > "Reason is the proof of science, faith the proof of religion, logic the proof of philosophy, but revelation is validated only by human experience." > — [Paper 101:2.8](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/101:2.8) ## On Truth and Beauty > "Truth, beauty, and goodness are correlated in the ministry of the Spirit, the grandeur of Paradise, the mercy of the Son, and the experience of the mortal of time." > — [Paper 56:10.20](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/56:10.20) > "Beauty is the recognition of the fitness of truth and the spiritual replication of the harmony of Paradise." > — [Paper 56:10.9](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/56:10.9) > "The discernment of supreme beauty is the discovery and integration of reality." > — [Paper 2:7.8](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/2:7.8) > "Goodness is the mental recognition of the relative values of the diverse levels of divine perfection." > — [Paper 56:10.12](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/56:10.12) > "Truth is the basis of science and philosophy, presenting the intellectual foundation of religion. Beauty sponsors art, music, and the meaningful rhythms of all human experience." > — [Paper 56:10.10](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/56:10.10) ## On Living Truth > "But truth can never become man's possession without the exercise of faith. This is true because man's thoughts, wisdom, ethics, and ideals will never rise higher than his faith, his sublime hope." > — [Paper 132:3.5](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/132:3.5) > "Religious experience, being essentially spiritual, can never be fully understood by the material mind; hence the function of theology, the psychology of religion." > — [Paper 196:3.28](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/196:3.28) > "Truth is living; the Spirit of Truth is ever leading the children of light into new realms of spiritual reality and divine service." > — [Paper 180:5.2](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/180:5.2) > "Static truth is dead truth, and only dead truth can be held as a theory. Living truth is dynamic and can enjoy only an experiential existence in the human mind." > — [Paper 180:5.2](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/180:5.2) > "You shall know the truth, and the truth shall set you free." > — [Paper 162:7.2](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/162:7.2) ## On Revelation and Discovery > "Revelation is evolutionary but always progressive. Down through the ages of a world's history, the revelations of religion are ever-expanding and successively more enlightening." > — [Paper 92:4.1](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/92:4.1) > "The true child of universe insight looks for the living Spirit of Truth in every wise saying." > — [Paper 180:5.4](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/180:5.4) > "Science discovers the material world, religion evaluates it, and philosophy endeavors to interpret its meanings while co-ordinating the scientific material viewpoint with the religious spiritual concept." > — [Paper 103:7.15](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/103:7.15) > "Revelation teaches mortal man that, to start such a magnificent and intriguing adventure through space by means of the progression of time, he should begin by the organization of knowledge into idea-decisions." > — [Paper 101:6.8](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/101:6.8) > "One of the most important things in human living is to find out what Jesus believed, to discover his ideals, and to strive for the achievement of his exalted life purpose." > — [Paper 196:1.3](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/196:1.3) ## Related Entities The spirit bestowed by Jesus that leads believers into living truth and spiritual reality. The living embodiment of truth, whose life demonstrated that truth must be lived, not merely known. The First Source of all truth, in whom all facts exist and all reality originates. ## Related Collections * [Quotes About Wisdom](/quotes/wisdom) * [Quotes About Faith](/quotes/faith) * [Quotes About God](/quotes/god) * [Quotes About Courage](/quotes/courage) ## Find More Quotes Search for more passages about truth using the API: ```bash theme={null} curl -X POST https://api.urantia.dev/search \ -H "Content-Type: application/json" \ -d '{"q": "truth revelation wisdom insight", "type": "or", "limit": 20}' ``` Get surrounding context for any quote: ```bash theme={null} curl "https://api.urantia.dev/paragraphs/2:7.12/context?window=3" ``` Read these passages in context on [UrantiaHub](https://urantiahub.com). # Urantia Book Quotes About Wisdom - 20 Inspiring Passages Source: https://urantia.dev/quotes/wisdom A curated collection of 20 powerful quotes about wisdom from the Urantia Book, with paper references and context. Discover what the Urantia Papers teach about divine wisdom, human understanding, and spiritual discernment. The Urantia Book distinguishes sharply between knowledge, wisdom, and spiritual insight. Wisdom is presented as the fruit of experience illuminated by truth — the practical application of knowledge guided by spiritual discernment. Search for more passages about wisdom using the interactive demo. ## On the Nature of Wisdom > "Knowledge is possessed only by sharing; it is safeguarded by wisdom and socialized by love." > — [Paper 48:7.28](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/48:7.28) > "Wisdom is the principal thing; therefore get wisdom. With all your quest for knowledge, get understanding." > — [Paper 71:7.5](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/71:7.5) > "Reason is the method of science; faith is the method of religion; logic is the attempted technique of philosophy. Wisdom is the highest philosophic function." > — [Paper 101:2.2](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/101:2.2) > "It requires wisdom and sagacity to do the unusual and unexpected." > — [Paper 160:1.9](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/160:1.9) > "Culture can never advance if half the population is hobbled or handicapped. Wisdom enhances the insight of the advancing soul." > — [Paper 81:6.26](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/81:6.26) ## On Wisdom and Knowledge > "Knowledge can be had by education, but wisdom, which is indispensable to true culture, can be secured only through experience and by men and women who are innately intelligent." > — [Paper 81:6.13](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/81:6.13) > "In all your quest for knowledge, you are ever in danger of becoming narrow, provincial, and materialistic." > — [Paper 81:6.16](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/81:6.16) > "Science is the source of facts, and mind cannot operate without facts. They are the building blocks in the construction of wisdom." > — [Paper 111:6.6](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/111:6.6) > "Knowledge is the sphere of the material or fact-discerning mind. Truth is the domain of the spiritually endowed intellect that is conscious of knowing God." > — [Paper 130:4.10](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/130:4.10) > "Mere knowledge of facts is not sufficient to warrant either the assumption of meanings or the comprehension of values." > — [Paper 111:6.7](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/111:6.7) ## On Spiritual Wisdom > "The attainment of wisdom is the supreme goal of mortal existence, for it provides that balance between the inner and the outer life which results in spiritual maturity." > — [Paper 160:1.2](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/160:1.2) > "Wisdom ever grows. With the progressive spiritualization of the human mind, the capacity for wisdom matures." > — [Paper 36:5.12](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/36:5.12) > "There is a great and glorious purpose in the march of the universes through space. All of your mortal struggling is not in vain." > — [Paper 32:5.1](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/32:5.1) > "The spiritual forward urge is the most powerful driving force present in this world; the truth-learning believer is the one progressive and aggressive soul on earth." > — [Paper 194:3.4](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/194:3.4) > "Those who know God have experienced the fact of his presence; such God-knowing mortals hold in their personal experience the only positive proof of the existence of the living God." > — [Paper 1:2.8](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/1:2.8) ## On Living Wisely > "It is not so much what you learn in this first life; it is the experience of living this life that is important." > — [Paper 39:4.13](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/39:4.13) > "In the affairs of men's hearts, let me tell you that spiritual wisdom is more essential than intellectual keenness." > — [Paper 160:4.1](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/160:4.1) > "Wise men have always sought to understand as well as to admire the ways of Providence." > — [Paper 71:8.14](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/71:8.14) > "Man should not blame God for those afflictions which are the natural result of the life which he chooses to live." > — [Paper 148:5.3](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/148:5.3) > "Do not try to satisfy the curiosity or gratify all the latent adventure surging within the soul in one short life in the flesh." > — [Paper 48:6.37](https://www.urantiahub.com/api/redirect/papers/by-standard-reference-id/48:6.37) ## Related Entities Greek philosopher whose discussions on wisdom and the art of living are recorded in Papers 160-161. The supreme example of wisdom lived in human form, blending divine insight with practical understanding. The source of all wisdom, whose infinite mind encompasses the truth of all reality. ## Related Collections * [Quotes About Truth](/quotes/truth) * [Quotes About Faith](/quotes/faith) * [Quotes About Courage](/quotes/courage) * [Quotes About God](/quotes/god) ## Find More Quotes Search for more passages about wisdom using the API: ```bash theme={null} curl -X POST https://api.urantia.dev/search \ -H "Content-Type: application/json" \ -d '{"q": "wisdom knowledge understanding discernment", "type": "or", "limit": 20}' ``` Get surrounding context for any quote: ```bash theme={null} curl "https://api.urantia.dev/paragraphs/48:7.28/context?window=3" ``` Read these passages in context on [UrantiaHub](https://urantiahub.com). # @urantia/api - Typed API Client Source: https://urantia.dev/sdks/api Typed TypeScript client for the Urantia Papers API. Full autocomplete for papers, paragraphs, search, entities, audio, citations, and more. ## Install ```bash theme={null} npm install @urantia/api ``` ## Quick Start ```typescript theme={null} import { UrantiaAPI } from '@urantia/api' const api = new UrantiaAPI() // List all 197 papers const { data: papers } = await api.papers.list() console.log(papers[0].title) // "Foreword" // Get a specific paragraph const { data: paragraph } = await api.paragraphs.get('2:0.1') console.log(paragraph.text) // Full-text search const results = await api.search.fullText('divine love') console.log(results.meta.total) // Semantic search const similar = await api.search.semantic('the nature of God') ``` ## Authentication For public endpoints, no auth is needed. For user endpoints (`api.me.*`), pass an access token: ```typescript theme={null} const api = new UrantiaAPI({ token: accessToken }) const { data: user } = await api.me.get() await api.me.bookmarks.create({ ref: '2:0.1', category: 'Favorites' }) ``` See [@urantia/auth](/sdks/auth) for how to obtain an access token via OAuth. ## Endpoint Groups Every method returns typed responses with full autocomplete. For detailed parameter docs, see the [API Reference](/api-reference/introduction). ### Content ```typescript theme={null} // Table of contents const { data } = await api.toc.get() // Papers const { data: papers } = await api.papers.list() const { data: paper } = await api.papers.get('2', { include: 'entities' }) // Paragraphs const { data: p } = await api.paragraphs.get('2:0.1') const { data: random } = await api.paragraphs.random() const { data: ctx } = await api.paragraphs.context('2:0.1', { window: 3 }) // Entities const { data: entities } = await api.entities.list({ type: 'being', limit: 20 }) const { data: entity } = await api.entities.get('jesus') const { data: mentions } = await api.entities.paragraphs('jesus') ``` ### Search ```typescript theme={null} // Full-text (AND, OR, phrase modes) const results = await api.search.fullText({ q: 'divine love', type: 'phrase', limit: 10 }) // Semantic (vector similarity) const results = await api.search.semantic({ q: 'what happens after death', limit: 5 }) ``` ### Utilities ```typescript theme={null} // Audio URLs const { data: audio } = await api.audio.get('2:0.1') // Citations (APA, MLA, Chicago, BibTeX) const { data: cite } = await api.cite.get('2:0.1', 'apa') // Vector embeddings (default: text-embedding-3-large 3072-d) const { data: vec } = await api.embeddings.get('2:0.1') const { data: vecSmall } = await api.embeddings.get('2:0.1', { model: 'small' }) // Bible — UB↔Bible cross-references const { data: bibleHits } = await api.bible.semanticSearch({ q: 'love your enemies', limit: 5, urantiaParallelLimit: 3, }) const { data: para } = await api.paragraphs.get('1:0.1', { include: 'entities,bibleParallels,urantiaParallels', }) ``` ### User Data (Authenticated) ```typescript theme={null} const api = new UrantiaAPI({ token: accessToken }) // Profile const { data: user } = await api.me.get() await api.me.update({ name: 'My Name' }) // Bookmarks await api.me.bookmarks.create({ ref: '2:0.1', category: 'Favorites' }) const { data: bookmarks } = await api.me.bookmarks.list() const { data: categories } = await api.me.bookmarks.categories() await api.me.bookmarks.delete('2:0.1') // Notes await api.me.notes.create({ ref: '2:0.1', text: 'Insightful passage' }) const { data: notes } = await api.me.notes.list() await api.me.notes.update(noteId, { text: 'Updated text' }) await api.me.notes.delete(noteId) // Reading Progress await api.me.readingProgress.mark(['1:0.1', '1:0.2', '1:0.3']) const { data: progress } = await api.me.readingProgress.get() await api.me.readingProgress.unmark('1:0.1') // Preferences await api.me.preferences.update({ theme: 'dark', fontSize: 18 }) const { data: prefs } = await api.me.preferences.get() ``` ### Languages ```typescript theme={null} // List available languages with translation progress const { data: languages } = await api.languages.list() // [{ code: "eng", name: "English", entityCount: 4456, paragraphCount: 16570 }, ...] // Get an entity in Spanish const { data: entity } = await api.entities.get('machiventa-melchizedek', { lang: 'es' }) console.log(entity.name) // "Machiventa Melchizedek" console.log(entity.description) // Spanish description console.log(entity.language) // "es" // List entities in French const { data: entities } = await api.entities.list({ type: 'being', lang: 'fr' }) // Entity paragraphs in Portuguese const { data: mentions } = await api.entities.paragraphs('jesus', { lang: 'pt' }) // Paragraphs in German const { data: p } = await api.paragraphs.get('2:0.1', { lang: 'de' }) // Random paragraph in Korean const { data: random } = await api.paragraphs.random({ lang: 'ko' }) ``` **Supported languages:** `eng` (English, default), `es` (Spanish), `fr` (French), `pt` (Portuguese), `de` (German), `ko` (Korean). The `language` field in the response tells you which language was returned. If a translation isn't available for the requested language, the API falls back to English and returns `language: "eng"`. Entity translations (names, descriptions, aliases) are available for all 4,456 entities in all 5 languages. Paragraph translations are coming soon. ## Paragraph References The SDK accepts all three reference formats interchangeably: | Format | Example | Description | | -------- | --------- | ---------------------------- | | Standard | `2:0.1` | paper:section.paragraph | | Global | `1:2.0.1` | part:paper.section.paragraph | | Short | `2.0.1` | paper.section.paragraph | ## Options ```typescript theme={null} const api = new UrantiaAPI({ baseUrl: 'https://api.urantia.dev', // default token: 'your-access-token', // for authenticated endpoints }) ``` ## Error Handling All methods throw an `Error` with the API's error message on failure: ```typescript theme={null} try { const { data } = await api.paragraphs.get('999:999.999') } catch (err) { console.error(err.message) // "404: Paragraph not found" } ``` # @urantia/auth - OAuth Authentication Source: https://urantia.dev/sdks/auth OAuth client for Urantia apps. Handles sign-in via accounts.urantiahub.com with PKCE security, session persistence, and auth state events. ## Install ```bash theme={null} npm install @urantia/auth ``` ## Overview `@urantia/auth` handles the OAuth Authorization Code flow with [accounts.urantiahub.com](https://accounts.urantiahub.com). Users sign in once and authorize your app to access their data (bookmarks, notes, reading progress, preferences). Your app receives an access token (7-day expiry) that you pass to `@urantia/api` for authenticated endpoints. ## Browser Sign-In (Redirect) The most common flow for web apps: Redirect the user to accounts.urantiahub.com: ```typescript theme={null} import { UrantiaAuth } from '@urantia/auth' const auth = new UrantiaAuth({ appId: 'my-app', redirectUri: 'https://myapp.com/callback', }) await auth.signIn({ mode: 'redirect', scopes: ['bookmarks', 'notes'] }) // → user is redirected to accounts.urantiahub.com ``` On your redirect URI page, complete the flow: ```typescript theme={null} const auth = new UrantiaAuth({ appId: 'my-app', redirectUri: 'https://myapp.com/callback', }) const session = await auth.handleCallback() // session.user.id, session.user.email, session.accessToken ``` Pass the access token to `@urantia/api`: ```typescript theme={null} import { UrantiaAPI } from '@urantia/api' const api = new UrantiaAPI({ token: session.accessToken }) const { data: bookmarks } = await api.me.bookmarks.list() ``` ## Browser Sign-In (Popup) For desktop apps or when you don't want to navigate away: ```typescript theme={null} const auth = new UrantiaAuth({ appId: 'my-app', redirectUri: 'https://myapp.com/callback', }) // Opens popup window — resolves when user completes sign-in const session = await auth.signIn({ scopes: ['bookmarks', 'notes'] }) console.log(session.user.email, session.accessToken) ``` ## Server-Side Token Exchange For backend environments where you already have an authorization code and app secret: ```typescript theme={null} import { UrantiaAuth } from '@urantia/auth' const auth = new UrantiaAuth({ appId: 'my-app', appSecret: process.env.URANTIA_APP_SECRET, }) const session = await auth.signIn({ code: authorizationCode }) ``` Server-side exchange is more secure because the app secret never leaves your server. The [demo app](https://demo.urantia.dev) uses this approach — the browser handles the redirect, and a server-side API route exchanges the code. ## Session Management Sessions are automatically persisted in `localStorage` and restored on page load. ```typescript theme={null} // Check current session (returns null if not signed in or expired) const session = auth.getSession() // Get just the token const token = auth.getToken() // Listen for auth state changes const unsubscribe = auth.onAuthStateChange((session) => { if (session) { console.log('Signed in:', session.user.email) } else { console.log('Signed out') } }) // Sign out (clears localStorage) auth.signOut() ``` ## Available Scopes When calling `signIn()`, you can request specific scopes: | Scope | Access | | ------------------ | ------------------------------- | | `profile` | Read your profile information | | `bookmarks` | Read and write bookmarks | | `notes` | Read and write notes | | `reading-progress` | Read and write reading progress | | `preferences` | Read and write preferences | | `app-data` | Read and write your app data | ```typescript theme={null} await auth.signIn({ scopes: ['profile', 'bookmarks', 'notes'] }) ``` ## Options | Option | Type | Required | Default | | ------------- | -------- | ----------- | --------------------------------- | | `appId` | `string` | Yes | — | | `appSecret` | `string` | Server only | — | | `redirectUri` | `string` | Browser | — | | `loginUrl` | `string` | No | `https://accounts.urantiahub.com` | | `apiUrl` | `string` | No | `https://api.urantia.dev` | ## Security * **PKCE** (Proof Key for Code Exchange) — used automatically for browser flows to prevent authorization code interception * **State parameter** — CSRF protection via random state verification * **Token expiry** — access tokens expire after 7 days; expired sessions are automatically cleared * **App secrets** — never stored in the browser; use server-side token exchange for production apps ## Registering Your App To use `@urantia/auth`, you need a registered OAuth app. Go to [accounts.urantiahub.com/apps](https://accounts.urantiahub.com/apps) and sign in with your Urantia account (email or Google). Click **Create app** and fill in: * **App ID** — a unique slug (e.g. `my-reading-app`). Lowercase letters, numbers, and hyphens. * **App Name** — shown to users on the consent screen * **Redirect URIs** — URLs where users are sent after authorization (e.g. `http://localhost:3000/callback` for local dev) * **Scopes** — which permissions your app needs After creation, you'll see your **App ID** and **App Secret**. The secret is only shown once — save it somewhere secure. Your app secret is only displayed once. If you lose it, you can rotate it from the app details page, but any existing integrations using the old secret will break. Use your App ID to initialize the SDK: ```typescript theme={null} import { UrantiaAuth } from '@urantia/auth' const auth = new UrantiaAuth({ appId: 'my-reading-app', redirectUri: 'http://localhost:3000/callback', }) ``` You can manage your apps, rotate secrets, and delete apps at any time from the [Developer Portal](https://accounts.urantiahub.com/apps). # TypeScript SDKs - Build Apps with the Urantia Papers API Source: https://urantia.dev/sdks/overview Official TypeScript SDKs for the Urantia Papers API. Typed client for all endpoints plus OAuth authentication — zero dependencies, full autocomplete. Two npm packages for building apps with the Urantia Papers API: | Package | Description | Install | | ---------------------------------------------------------------- | ---------------------------------------- | --------------------------- | | **[@urantia/api](https://www.npmjs.com/package/@urantia/api)** | Typed client for api.urantia.dev | `npm install @urantia/api` | | **[@urantia/auth](https://www.npmjs.com/package/@urantia/auth)** | OAuth client for accounts.urantiahub.com | `npm install @urantia/auth` | Both are zero-dependency, TypeScript-first, and use native `fetch` under the hood. ## When to Use Which * **Public data only** (papers, search, entities, audio) → install just `@urantia/api` * **User features** (bookmarks, notes, reading progress) → install both `@urantia/api` and `@urantia/auth` ## Quick Install ```bash theme={null} # Public endpoints only npm install @urantia/api # Public + authenticated endpoints npm install @urantia/api @urantia/auth ``` ## Using Both Together The typical flow: authenticate with `@urantia/auth`, then pass the token to `@urantia/api`. ```typescript theme={null} import { UrantiaAuth } from '@urantia/auth' import { UrantiaAPI } from '@urantia/api' // 1. Sign in const auth = new UrantiaAuth({ appId: 'my-app', redirectUri: 'https://myapp.com/callback', }) const session = await auth.signIn() // 2. Create an authenticated API client const api = new UrantiaAPI({ token: session.accessToken }) // 3. Use authenticated endpoints await api.me.bookmarks.create({ ref: '2:0.1', category: 'Favorites' }) const { data: bookmarks } = await api.me.bookmarks.list() const { data: progress } = await api.me.readingProgress.get() ``` ## See It in Action The [Interactive Demo](https://demo.urantia.dev) is built entirely with these SDKs. The [Account section](https://demo.urantia.dev/#account) shows the full OAuth flow — sign in, manage bookmarks, notes, reading progress, and preferences. The demo app is [open source](https://github.com/kelsonic/urantia-dev-demo) — see how `@urantia/api` and `@urantia/auth` are used in a real Next.js app. ## Links * **npm:** [@urantia/api](https://www.npmjs.com/package/@urantia/api) · [@urantia/auth](https://www.npmjs.com/package/@urantia/auth) * **GitHub:** [urantia-dev-sdks](https://github.com/kelsonic/urantia-dev-sdks) * **API Reference:** [Full endpoint documentation](/api-reference/introduction) # Skill Source: https://urantia.dev/skill Access and search the Urantia Book via REST API. Use when retrieving paragraphs, searching text, browsing papers, getting audio narration, or building RAG pipelines over the Urantia Papers. # Urantia Papers API Free, open REST API for structured access to all 197 papers, 1,626 sections, and 14,500+ paragraphs of the Urantia Book — with full-text search and multi-voice audio narration. ## Base URL ``` https://api.urantia.dev ``` No authentication required. Rate limit: 100 requests/minute per IP. ## Capabilities * **Search** the full text of the Urantia Book with ranked results * **Retrieve** any paragraph by reference in three auto-detected ID formats * **Browse** the table of contents, papers, and sections * **Get context** around a paragraph for RAG applications * **Access audio** narration with multiple TTS models and voices * **Generate typed clients** from the OpenAPI spec at `/openapi.json` ## Endpoints | Method | Path | Description | | ------ | ----------------------------------- | -------------------------------------------------- | | GET | `/toc` | Full table of contents (parts and papers) | | GET | `/papers` | List all 197 papers with metadata | | GET | `/papers/:id` | Single paper with all paragraphs | | GET | `/papers/:id/sections` | Sections within a paper | | GET | `/paragraphs/random` | Random paragraph | | GET | `/paragraphs/:ref` | Paragraph by any ID format | | GET | `/paragraphs/:ref/context?window=3` | Paragraph with surrounding context (window: 1-10) | | POST | `/search` | Full-text search with pagination | | POST | `/search/semantic` | Semantic similarity search using vector embeddings | | GET | `/audio/:paragraphId` | Audio URLs for a paragraph | ## Paragraph Reference Formats The API accepts three reference formats — auto-detected from the string: | Format | Example | Structure | | ----------------------- | --------- | -------------------------------------- | | globalId | `1:2.0.1` | `partId:paperId.sectionId.paragraphId` | | standardReferenceId | `2:0.1` | `paperId:sectionId.paragraphId` | | paperSectionParagraphId | `2.0.1` | `paperId.sectionId.paragraphId` | ## Workflows ### Search and retrieve passages 1. `POST /search` with `{"q": "your query", "type": "and", "limit": 10}` 2. Use `standardReferenceId` from each result to fetch context 3. `GET /paragraphs/:ref/context?window=3` for surrounding paragraphs ### RAG pipeline (recommended) 1. `GET /toc` — understand the book structure 2. `POST /search` — find relevant passages for the user's question 3. `GET /paragraphs/:ref/context?window=3` — expand each result with surrounding paragraphs 4. Feed the collected passages as context to your LLM ### Browse and read 1. `GET /toc` — get the full table of contents 2. `GET /papers/:id` — read an entire paper 3. `GET /papers/:id/sections` — get sections within a paper ### Get audio for a passage 1. Look up a paragraph via `GET /paragraphs/:ref` 2. The response includes an `audio` field with URLs keyed by model and voice 3. Or use `GET /audio/:paragraphId` for just the audio data ## Search Request body for `POST /search`: ```json theme={null} { "q": "search terms", "type": "and", "limit": 10, "page": 1, "paperId": null, "partId": null } ``` Search modes: * `and` (default) — all words must appear. Best for specific queries. * `or` — any word can appear. Best for broad exploration. * `phrase` — exact phrase match. Best for quoting specific text. Optional filters: `paperId` (0-196) and `partId` (1-5) narrow the scope. ## Audio Every paragraph has audio narration. The `audio` field is a nested object keyed by model and voice: ```json theme={null} { "audio": { "tts-1-hd": { "nova": { "format": "mp3", "url": "https://audio.urantia.dev/tts-1-hd-nova-1:2.0.1.mp3" } } } } ``` Models: `tts-1-hd`, `tts-1`. Voices: `nova`, `echo`, `onyx`, `alloy`, `fable`, `shimmer`. Full coverage with `tts-1-hd/nova`. ## Book Structure The Urantia Book contains 197 papers organized in four parts plus a Foreword: * **Foreword** — Paper 0 * **Part I: The Central and Superuniverses** — Papers 1-31 * **Part II: The Local Universe** — Papers 32-56 * **Part III: The History of Urantia** — Papers 57-119 * **Part IV: The Life and Teachings of Jesus** — Papers 120-196 ## Constraints * Rate limit: 100 requests/minute per IP (429 response if exceeded) * All responses are JSON * The `/paragraphs/random` endpoint is never cached; all other endpoints are CDN-cached * Response envelope: `{ data, meta: { page, limit, total, totalPages } }` for paginated endpoints ## Documentation * Interactive docs: [https://api.urantia.dev/docs](https://api.urantia.dev/docs) (Swagger UI) * Full documentation: [https://urantia.dev](https://urantia.dev) * OpenAPI 3.1 spec: [https://api.urantia.dev/openapi.json](https://api.urantia.dev/openapi.json) # Donate Source: https://urantia.dev/support Help keep the Urantia Papers API free and open for everyone. Hello 👋 I'm [Kelson](https://github.com/kelsonic) — I build and maintain this project. Questions or feedback? [kelson@urantia.dev](mailto:kelson@urantia.dev) Throughout history, every revelation has followed the same pattern: institutions form around it, claim authority over it, and gatekeep access. The teachings get locked behind organizations, copyrights, and approval processes. Derivative works get restricted. The community loses control. I'm building this project to make sure that doesn't happen with the Urantia Papers. Everything here is **MIT-licensed and free** — the API, the data, the audio, the search infrastructure. Anyone can build on it. Translations, apps, study tools, AI integrations — whatever you want to create, you're safe to use this material without asking permission. The goal is simple: **open infrastructure for the community**, so the fifth epochal revelation stays accessible to everyone. *** ## Support the Project This infrastructure costs real money to keep running. If it's useful to you, consider helping keep it free and open. Choose any amount (\$5 minimum). Every bit helps cover hosting and infrastructure costs. \$5/month. Steady support helps me plan ahead and keep improving. ## Where Your Support Goes Every dollar goes directly to keeping this infrastructure free and open: | Service | Purpose | Cost | | ----------------- | -------------------------------------------------------------------------- | --------- | | **Database** | PostgreSQL hosting for 14,500+ paragraphs, entities, and vector embeddings | \~\$25/mo | | **Edge Network** | Cloudflare Workers for globally distributed API responses | \~\$5/mo | | **Monitoring** | Logging, uptime monitoring, and error tracking | \~\$20/mo | | **Documentation** | This docs site you're reading right now | \~\$10/mo | | **Domains** | urantia.dev, api.urantia.dev, status.urantia.dev | \~\$15/mo | ## Other Ways to Help Share with developers, study groups, or anyone who might build with this. Use the API to create apps, study tools, or AI integrations. The best support is a thriving ecosystem. # Terms of Service Source: https://urantia.dev/terms-of-service Terms of Service for the Urantia Papers API (urantia.dev) **Last updated: March 20, 2026** ## Agreement to Terms These Terms of Service constitute a legally binding agreement between you and Adams Technologies LLC, doing business as Urantia.dev ("we," "us," or "our"), a Texas limited liability company. By accessing or using the Urantia Papers API at api.urantia.dev, the documentation at urantia.dev, or any related services (collectively, the "Services"), you agree to be bound by these terms. If you do not agree with these terms, you must discontinue use immediately. **Disclaimer of Affiliation:** Urantia.dev is an independent community project. It is not affiliated with, endorsed by, sponsored by, or officially connected with Urantia Foundation. The original English text of The Urantia Book entered the public domain in 2006. All use of the word "Urantia" on our services is for descriptive, nominative purposes to identify the subject matter. ## 1. Our Services Urantia.dev provides a free, public API for accessing The Urantia Book text, metadata, search, audio references, embeddings, and related data. The API is designed for developers building applications, study tools, and integrations related to The Urantia Book. ## 2. Acceptable Use You may use the API for any lawful purpose. You agree not to: * Attempt to gain unauthorized access to our systems or infrastructure * Interfere with or disrupt the services or impose an unreasonable load * Use the API to harass, abuse, or harm others * Misrepresent your application as being officially affiliated with Urantia Foundation All content served by the API — including audio narrations, AI-generated explanations, and curated collections — is dedicated to the public domain under CC0 1.0 and may be freely used. ## 3. Rate Limits and Availability We may impose rate limits to ensure fair access for all users. The API is provided on a best-effort basis. We do not guarantee uptime, availability, or response times, though we strive for high reliability. ## 4. Intellectual Property **The Urantia Book text** — the original English text of The Urantia Book entered the public domain in 2006. You may freely use, copy, and redistribute the English text data returned by the API. **Our original works** — all other content served by the API is independently created by or for Urantia.dev. This includes audio narrations, AI-generated explanations, curated quote collections, vector embeddings, semantic search indexes, API design, documentation, and source code. All original content is dedicated to the public domain under [CC0 1.0 Universal](https://creativecommons.org/publicdomain/zero/1.0/). All source code is released under the [MIT License](https://opensource.org/licenses/MIT). You may freely use, copy, modify, and redistribute any of it. **Your applications** — you retain full ownership of any applications, tools, or services you build using our API. ## 5. API Data and Accuracy We strive for accuracy in our data but do not warrant that all API responses are error-free. AI-generated content (explanations, semantic search results) is provided for informational purposes only and should not be considered authoritative. ## 6. Third-Party Services Our services integrate with third-party infrastructure (Cloudflare, Supabase, CDN providers). We are not responsible for the availability or practices of third-party services. ## 7. Disclaimer of Warranties THE SERVICES ARE PROVIDED "AS IS" AND "AS AVAILABLE" WITHOUT WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED. WE DO NOT WARRANT THAT THE SERVICES WILL BE UNINTERRUPTED, SECURE, OR ERROR-FREE. ## 8. Limitation of Liability TO THE MAXIMUM EXTENT PERMITTED BY LAW, ADAMS TECHNOLOGIES LLC AND ITS MEMBERS, EMPLOYEES, AND AGENTS SHALL NOT BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL, OR PUNITIVE DAMAGES ARISING FROM YOUR USE OF THE SERVICES. ## 9. Indemnification You agree to indemnify and hold harmless Adams Technologies LLC from any claims, damages, or expenses arising from your use of the services, your applications, or your violation of these terms. ## 10. Governing Law These terms are governed by the laws of the State of Texas, United States. Any disputes shall be resolved in the courts of Travis County, Texas, unless otherwise required by applicable law. ## 11. Changes to These Terms We may update these terms from time to time. Material changes will be communicated via the documentation site or API changelog. Continued use after changes constitutes acceptance. ## 12. Contact Us For questions about these terms, contact us at: Adams Technologies LLC DBA Urantia.dev Email: [team@urantiahub.com](mailto:team@urantiahub.com) # Use Cases - What You Can Build with the Urantia Papers API Source: https://urantia.dev/use-cases Explore practical use cases for the Urantia Papers API: daily quote apps, AI chatbots, study tools, audio apps, research tools, and more. Includes code examples for each. The Urantia Papers API enables developers and creators to build a wide range of applications. Here are the most popular use cases with working code examples. See these use cases in action — semantic search, random quotes, audio playback, entity exploration, and passage lookup, all live. ## Daily Quote App Send or display a random inspiring quote from the Urantia Book every day. ```bash theme={null} # Get a random paragraph curl https://api.urantia.dev/paragraphs/random ``` ```javascript theme={null} // Daily quote in JavaScript async function getDailyQuote() { const res = await fetch('https://api.urantia.dev/paragraphs/random'); const data = await res.json(); return { text: data.text, reference: data.standardReferenceId, paper: data.paperTitle }; } ``` **Ideas:** Email newsletters, social media bots, browser extensions, mobile widgets. ## AI Chatbot / RAG Application Build an AI assistant that can answer questions about the Urantia Book with source citations. ```python theme={null} import requests def search_urantia(query, limit=5): """Search the Urantia Papers and return relevant passages.""" response = requests.post( "https://api.urantia.dev/search", json={"q": query, "type": "and", "limit": limit} ) return response.json()["results"] def get_context(ref, window=3): """Get surrounding context for a passage.""" response = requests.get( f"https://api.urantia.dev/paragraphs/{ref}/context?window={window}" ) return response.json() # Example: Build context for an LLM prompt results = search_urantia("What happens after death?") context_passages = [] for result in results: ctx = get_context(result["standardReferenceId"]) context_passages.append(ctx) ``` **Ideas:** Telegram/Discord bots, ChatGPT plugins, study assistants, Slack integrations. See our [AI Agent Integration guide](/ai-agents) for the recommended RAG workflow. ## Study Tool Build interactive study tools with cross-references, bookmarks, and reading progress. ```bash theme={null} # Get the table of contents for navigation curl https://api.urantia.dev/toc # Read a specific paper curl https://api.urantia.dev/papers/1 # Get a section's paragraphs curl https://api.urantia.dev/papers/1/sections ``` **Ideas:** Reading plans, topic explorers, parallel study viewers, flashcard generators. ## Audio Application Create listening experiences for the Urantia Book with multiple voice options. ```bash theme={null} # Get audio URLs for a paragraph curl https://api.urantia.dev/audio/1:0.1 # Full paper with audio included curl https://api.urantia.dev/papers/1 # (audio field included in each paragraph) ``` ```javascript theme={null} // Build an audio player playlist for a paper async function getPaperAudio(paperId) { const res = await fetch(`https://api.urantia.dev/papers/${paperId}`); const data = await res.json(); return data.paragraphs .filter(p => p.audio?.['tts-1-hd']?.nova) .map(p => ({ url: p.audio['tts-1-hd'].nova.url, ref: p.standardReferenceId, text: p.text.substring(0, 100) })); } ``` **Ideas:** Podcast feeds, audiobook apps, background listening players, accessibility tools. ## Research & Analysis Tool Search and analyze the text of the Urantia Book for research purposes. ```bash theme={null} # Search for a specific concept curl -X POST https://api.urantia.dev/search \ -H "Content-Type: application/json" \ -d '{"q": "Thought Adjuster", "type": "and", "limit": 50}' # Exact phrase search curl -X POST https://api.urantia.dev/search \ -H "Content-Type: application/json" \ -d '{"q": "spirit of truth", "type": "phrase", "limit": 20}' # Search within a specific paper curl -X POST https://api.urantia.dev/search \ -H "Content-Type: application/json" \ -d '{"q": "love", "paperId": 56, "limit": 20}' ``` **Ideas:** Concordance tools, topic frequency analyzers, cross-reference builders, textual studies. ## Client Generation Generate a typed API client in any language from the OpenAPI spec. ```bash theme={null} # Download the OpenAPI specification curl https://api.urantia.dev/openapi.json -o openapi.json # Generate a TypeScript client (using openapi-generator) npx @openapitools/openapi-generator-cli generate \ -i openapi.json -g typescript-fetch -o ./urantia-client ``` ## Getting Started 1. No signup or API key needed — start making requests immediately 2. Base URL: `https://api.urantia.dev` 3. Rate limit: 100 requests/minute 4. All responses are JSON with `Cache-Control` headers Explore all 9 endpoints with interactive examples. # Video - Watch and Read Along Source: https://urantia.dev/video Full paper videos with AI narration and synced text overlay. 197 papers, 1080p, available via API and CDN. Every paper includes a `video` field — a nested object keyed by TTS voice, or `null` if no video exists. ## Response shape ```json theme={null} { "video": { "nova": { "mp4": "https://video.urantiahub.com/tts-1-hd-nova-1.mp4", "thumbnail": "https://video.urantiahub.com/thumbnail-1.png", "duration": 2336 } } } ``` | Field | Type | Description | | ----------- | ------ | ---------------------------------------------------- | | `mp4` | string | Direct URL to the H.264 MP4 video (1920x1080, 30fps) | | `thumbnail` | string | Direct URL to the paper title card PNG (1920x1080) | | `duration` | number | Video duration in seconds | ## Available voices All 197 papers have videos with the `nova` voice. Additional voices may be added in the future. | Voice | Coverage | | ------ | -------------- | | `nova` | All 197 papers | ## Accessing video data Video metadata is included in responses from paper endpoints: ```bash theme={null} # List all papers with video URLs curl https://api.urantia.dev/papers # Get a single paper with video curl https://api.urantia.dev/papers/1 ``` ## Direct CDN access Videos and thumbnails are served from `video.urantiahub.com` via Cloudflare R2: ```bash theme={null} # Video (H.264 MP4, 1080p) https://video.urantiahub.com/tts-1-hd-nova-1.mp4 # Thumbnail (PNG) https://video.urantiahub.com/thumbnail-1.png ``` See the [CDN page](/cdn) for the full list of available assets. ## YouTube All papers are also available on the [UrantiaHub YouTube channel](https://youtube.com/@UrantiaHub), with chapter timestamps for section navigation.