Chabad Library Text Processing API
  1. Texts
Chabad Library Text Processing API
  • System
    • Health Check
      GET
  • Search
    • Search Chabad Library
      GET
  • Texts
    • List All Texts
      GET
    • Get Text by Slug
      GET
  • Extraction
    • Test Chabad Library API
      GET
    • Extract Text from Document
      POST
  • Processing
    • Generate Document Outline
      POST
    • Process Complete Document
      POST
    • Translate Document Segment
      POST
  • Schemas
    • HealthResponse
    • ErrorResponse
    • SourceMetadata
    • OutlineSegment
    • DocumentOutline
    • TranslationData
    • Footnote
    • TranslatedSegment
    • EnrichedSegment
    • ProcessedDocument
    • SearchResult
    • SearchResultsResponse
    • WorkByIdResponse
    • NavSearchResult
    • TextListItem
    • NavSearchResultsResponse
    • PaginationInfo
    • PaginatedTextsResponse
  1. Texts

List All Texts

GET
/api/texts
Retrieve a paginated list of all texts stored in the database. Texts are ordered by creation date (newest first). Each text entry includes metadata such as publication title, work title, author, page count, and timestamps. The slug can be used to retrieve the full text via GET /api/texts/{slug}.

Request

Query Params

Responses

馃煝200Success
application/json
Paginated list of texts
Body

馃敶500500
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/texts?page=1&pageSize=20'
Response Response Example
200 - Success
{
    "texts": [
        {
            "slug": "likutei-sichos-vol-36-terumah-sicha-1",
            "publication_title": "诇拽讜讟讬 砖讬讞讜转",
            "work_title": "转专讜诪讛 - 砖讬讞讛 讗",
            "author_name": "讻\"拽 讗讚诪讜\"专",
            "page_count": 5,
            "created_at": "2024-01-15T10:30:00.000Z",
            "updated_at": "2024-01-15T10:30:00.000Z"
        }
    ],
    "pagination": {
        "page": 1,
        "pageSize": 20,
        "total": 150,
        "totalPages": 8
    }
}
Modified at聽2025-12-03 11:51:17
Previous
Search Chabad Library
Next
Get Text by Slug
Built with