Akathists Endpoint

Get akathists for a saint by internal id. Each akathist is a sequence of numbered kondaks and ikoses, with optional closing prayers.

Request

GET /akathists/?id=442

GET /akathists/?id=442&lang=cu&number=2

Parameters:

Parameter Type In Description
id string query Internal saint id (typically one). Example: ?id=442.
lang string query ru (default), cu, or en. Unknown values fall back to ru.
number integer query Optional. Selects a specific akathist by its internal number.

Validation:

Response

Returns an ordered array in data.

{
  "meta": {
    "lang": "ru",
    "format": "html",
    "requestedIds": ["442"],
    "count": 1
  },
  "data": [
    {
      "id": "442",
      "found": true,
      "akathists": [
        {
          "number": 1,
          "title": "Акафист преподобному Амвросию Оптинскому",
          "sections": [
            { "type": "kondak", "number": 1, "html": "<p>...</p>" },
            { "type": "ikos", "number": 1, "html": "<p>...</p>" }
          ],
          "repeatEnding": true,
          "prayers": [
            { "html": "<p>...</p>" }
          ]
        }
      ]
    }
  ]
}

Notes