Hymnography Endpoint

Get troparia, kontakia, prayers, magnifications, hagiographies, and icon metadata for one or more internal calendar ids.

hagiography content is currently work in progress. Coverage is incomplete, some saint entries do not yet include narrative data, and existing texts/titles/metadata may be expanded or refined as source material is reviewed.

Request

GET /hymnography/?id=387&id=391&id=theodore_tyron_saturday_first_week_lent

Parameters:

Parameter Type In Description
id string[] query Repeatable internal ids (1..24 values). Example: ?id=387&id=391.
lang string query ru (default) or en (meta/error localization).

Validation:

Response

Returns an ordered array in data, preserving the same order as requested ids.

{
  "meta": {
    "lang": "ru",
    "format": "html",
    "requestedIds": ["387", "391", "unknown_item"],
    "count": 2
  },
  "data": [
    {
      "id": "387",
      "found": true,
      "troparia": [
        {
          "delta": 0,
          "tone": 4,
          "texts": [
            { "lang": "cu", "value": "<p>...</p>" },
            { "lang": "ru", "value": "<p>...</p>" }
          ]
        }
      ],
      "kontakia": [],
      "prayers": [],
      "magnifications": [],
      "hagiography": {
        "links": [
          {
            "url": "https://example.com/sermons/lazarus-saturday",
            "text": {
              "ru": "Sermon for Lazarus Saturday",
              "en": "Sermon for Lazarus Saturday"
            },
            "title": {
              "ru": "Sermon for Lazarus Saturday",
              "en": "Sermon for Lazarus Saturday"
            },
            "author": {
              "ru": "Selected author"
            }
          }
        ],
        "short": null,
        "full": null
      },
      "icons": [
        {
          "path": "/images/icons/421/421-001-eustathius-of-antioch.svg",
          "url": "https://api.ispovednik.org/images/icons/421/421-001-eustathius-of-antioch.svg",
          "title": {
            "texts": [
              { "lang": "ru", "value": "Икона святителя Евстафия Антиохийского" },
              { "lang": "en", "value": "Icon of Saint Eustathius of Antioch" }
            ]
          },
          "description": null,
          "mimeType": "image/svg+xml",
          "width": 256,
          "height": 256,
          "sortOrder": 1
        }
      ]
    },
    {
      "id": "unknown_item",
      "found": false,
      "troparia": [],
      "kontakia": [],
      "prayers": [],
      "magnifications": [],
      "hagiography": null,
      "icons": [],
      "notFound": {
        "code": "ID_NOT_FOUND",
        "message": "No hymnography found for requested id."
      }
    }
  ]
}

Notes