example-data.com

sleep-entries

sleep-entries

Page 3 of 10.

userId
Melba Collier @melba.collier
date
2026-02-23
sleepAt
wakeAt
durationMinutes
414
quality
5
createdAt
userId
Melba Collier @melba.collier
date
2025-10-10
sleepAt
wakeAt
durationMinutes
531
quality
5
createdAt
userId
Alvina Koch @alvina.koch8
date
2025-07-31
sleepAt
wakeAt
durationMinutes
443
quality
5
createdAt
userId
Alvina Koch @alvina.koch8
date
2026-02-07
sleepAt
wakeAt
durationMinutes
536
quality
2
createdAt
userId
Alvina Koch @alvina.koch8
date
2026-03-17
sleepAt
wakeAt
durationMinutes
432
quality
3
createdAt
userId
Alvina Koch @alvina.koch8
date
2025-12-20
sleepAt
wakeAt
durationMinutes
467
quality
1
createdAt

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/sleep-entries?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/sleep-entries?limit=25"
);
const { data, meta } = await res.json();
import type { SleepEntrie, ListEnvelope } from "https://example-data.com/types/sleep-entries.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/sleep-entries?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<SleepEntrie>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/sleep-entries",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 49,
      "userId": 19,
      "date": "2026-02-23",
      "sleepAt": "2026-02-23T23:47:00.000Z",
      "wakeAt": "2026-02-24T06:41:00.000Z",
      "durationMinutes": 414,
      "quality": 5,
      "createdAt": "2026-02-24T06:49:18.371Z"
    },
    {
      "id": 50,
      "userId": 19,
      "date": "2025-10-10",
      "sleepAt": "2025-10-10T21:48:00.000Z",
      "wakeAt": "2025-10-11T06:39:00.000Z",
      "durationMinutes": 531,
      "quality": 5,
      "createdAt": "2025-10-11T06:58:32.210Z"
    },
    {
      "id": 51,
      "userId": 20,
      "date": "2025-07-31",
      "sleepAt": "2025-07-31T21:53:00.000Z",
      "wakeAt": "2025-08-01T05:16:00.000Z",
      "durationMinutes": 443,
      "quality": 5,
      "createdAt": "2025-08-01T05:33:02.861Z"
    }
  ],
  "meta": {
    "page": 3,
    "limit": 24,
    "total": 773,
    "totalPages": 33
  },
  "links": {
    "self": "/api/v1/sleep-entries?page=3",
    "next": "/api/v1/sleep-entries?page=4",
    "prev": "/api/v1/sleep-entries?page=2"
  }
}
Draftbit