latestOpenAPI 3.0.02026-08-203145159.1 KB

0e40a805593b

audio experiences

List bedtime stories

Returns a paginated list of bedtime stories — narrated audio stories that help listeners unwind and fall asleep. Each bedtime story includes its playable audio, duration, imagery, captions where available, and tags.

get/v1/bedtime-stories

Query parameters

offsetinteger

Zero-based item offset

limitinteger

Page size. Values above 100 are clamped to 100, not rejected; meta.pagination reports the applied value.

localestring

Locale, forwarded as the thrive-locale header

Response

A page of bedtime stories

Example response

{
  "data": [
    {
      "name": "The Sleepy Lighthouse",
      "tags": [
        {
          "slug": "sleep",
          "name": "Sleep"
        }
      ],
      "conditions": [
        {
          "slug": "sleep",
          "name": "Sleep"
        }
      ],
      "coreHealthBehaviors": [
        {
          "slug": "sleep",
          "name": "Sleep"
        }
      ],
      "durationInSeconds": 1200,
      "media": [
        {
          "contentType": "audio/mpeg"
        }
      ],
      "assets": [
        {
          "contentType": "image/jpeg"
        }
      ]
    }
  ],
  "meta": {
    "pagination": {
      "limit": 10
    }
  },
  "links": {
    "self": "/v1/soundscapes?offset=0&limit=10",
    "next": "/v1/soundscapes?offset=10&limit=10"
  }
}