example-data.com

sleep-entries

sleep-entries

Page 10 of 10.

userId
Lamont Huel @lamont.huel
date
2025-07-16
sleepAt
wakeAt
durationMinutes
384
quality
1
createdAt
userId
Virginie O'Connell @virginie.oconnell55
date
2026-01-15
sleepAt
wakeAt
durationMinutes
290
quality
4
createdAt
userId
Virginie O'Connell @virginie.oconnell55
date
2026-02-12
sleepAt
wakeAt
durationMinutes
497
quality
2
createdAt
userId
Florencio Mohr @florencio_mohr
date
2026-02-03
sleepAt
wakeAt
durationMinutes
455
quality
4
createdAt
userId
Florencio Mohr @florencio_mohr
date
2026-05-14
sleepAt
wakeAt
durationMinutes
359
quality
3
createdAt
userId
Ike Breitenberg @ike.breitenberg
date
2026-03-30
sleepAt
wakeAt
durationMinutes
326
quality
2
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": 217,
      "userId": 69,
      "date": "2025-07-16",
      "sleepAt": "2025-07-16T22:34:00.000Z",
      "wakeAt": "2025-07-17T04:58:00.000Z",
      "durationMinutes": 384,
      "quality": 1,
      "createdAt": "2025-07-17T05:20:32.081Z"
    },
    {
      "id": 218,
      "userId": 70,
      "date": "2026-01-15",
      "sleepAt": "2026-01-15T23:32:00.000Z",
      "wakeAt": "2026-01-16T04:22:00.000Z",
      "durationMinutes": 290,
      "quality": 4,
      "createdAt": "2026-01-16T04:39:34.873Z"
    },
    {
      "id": 219,
      "userId": 70,
      "date": "2026-02-12",
      "sleepAt": "2026-02-12T23:44:00.000Z",
      "wakeAt": "2026-02-13T08:01:00.000Z",
      "durationMinutes": 497,
      "quality": 2,
      "createdAt": "2026-02-13T08:08:59.923Z"
    }
  ],
  "meta": {
    "page": 10,
    "limit": 24,
    "total": 773,
    "totalPages": 33
  },
  "links": {
    "self": "/api/v1/sleep-entries?page=10",
    "next": "/api/v1/sleep-entries?page=11",
    "prev": "/api/v1/sleep-entries?page=9"
  }
}
Draftbit