example-data.com

notifications

notifications

Page 2 of 10.

  • User #174 follow Myrtie Daniel started following you · 2/26/2026, 4:37:33 AM

  • User #238 system System notification · 8/3/2025, 4:05:32 AM

  • User #214 like Gerald Lind liked your post · 6/1/2025, 9:19:31 AM

  • User #16 like Arnaldo Friesen liked your post · 8/14/2025, 7:07:38 AM

  • User #182 system System notification · 1/6/2026, 9:34:38 PM

  • User #23 mention Matilde Beahan mentioned you in a post · 3/19/2026, 5:30:24 AM

  • User #191 follow Theresia Collins started following you · 7/2/2025, 9:20:07 AM

  • User #234 mention Jaylon Conroy mentioned you in a post · 4/23/2026, 3:24:44 PM

  • User #106 system System notification · 1/28/2026, 5:12:59 AM

  • User #207 like Jadon Nicolas liked your post · 5/28/2025, 5:59:52 PM

  • User #139 reply Charlene Kuhic replied to your comment · 3/30/2026, 12:36:28 AM

  • User #115 system System notification · 5/7/2026, 1:49:22 AM

  • User #79 follow Kennith Hahn started following you · 11/23/2025, 5:52:25 AM

  • User #100 system System notification · 6/25/2025, 3:58:11 AM

  • User #239 like Alvina Koch liked your post · 3/25/2026, 10:43:58 PM

  • User #131 follow Myrl Pollich started following you · 3/30/2026, 3:06:14 AM

  • User #82 like Mara Johnson liked your post · 3/19/2026, 5:51:40 AM

  • User #134 mention Audreanne Will mentioned you in a post · 12/4/2025, 10:26:01 PM

  • User #174 follow Celia D'Amore started following you · 7/20/2025, 5:37:52 PM

  • User #164 system System notification · 10/5/2025, 12:45:53 PM

  • User #98 like Clementine Nicolas liked your post · 4/1/2026, 1:35:41 AM

  • User #81 follow Glenna Keebler started following you · 9/5/2025, 10:54:56 PM

  • User #211 system System notification · 10/16/2025, 9:06:36 AM

  • User #90 mention Malvina Ortiz mentioned you in a post · 2/25/2026, 5:54:03 PM

  • User #174 follow Myrtie Daniel started following you

    2/26/2026, 4:37:33 AM

  • User #238 system System notification

    8/3/2025, 4:05:32 AM

  • User #214 like Gerald Lind liked your post

    6/1/2025, 9:19:31 AM

  • User #16 like Arnaldo Friesen liked your post

    8/14/2025, 7:07:38 AM

  • User #182 system System notification

    1/6/2026, 9:34:38 PM

  • User #23 mention Matilde Beahan mentioned you in a post

    3/19/2026, 5:30:24 AM

  • User #191 follow Theresia Collins started following you

    7/2/2025, 9:20:07 AM

  • User #234 mention Jaylon Conroy mentioned you in a post

    4/23/2026, 3:24:44 PM

  • User #106 system System notification

    1/28/2026, 5:12:59 AM

  • User #207 like Jadon Nicolas liked your post

    5/28/2025, 5:59:52 PM

  • User #139 reply Charlene Kuhic replied to your comment

    3/30/2026, 12:36:28 AM

  • User #115 system System notification

    5/7/2026, 1:49:22 AM

  • User #79 follow Kennith Hahn started following you

    11/23/2025, 5:52:25 AM

  • User #100 system System notification

    6/25/2025, 3:58:11 AM

  • User #239 like Alvina Koch liked your post

    3/25/2026, 10:43:58 PM

  • User #131 follow Myrl Pollich started following you

    3/30/2026, 3:06:14 AM

  • User #82 like Mara Johnson liked your post

    3/19/2026, 5:51:40 AM

  • User #134 mention Audreanne Will mentioned you in a post

    12/4/2025, 10:26:01 PM

  • User #174 follow Celia D'Amore started following you

    7/20/2025, 5:37:52 PM

  • User #164 system System notification

    10/5/2025, 12:45:53 PM

  • User #98 like Clementine Nicolas liked your post

    4/1/2026, 1:35:41 AM

  • User #81 follow Glenna Keebler started following you

    9/5/2025, 10:54:56 PM

  • User #211 system System notification

    10/16/2025, 9:06:36 AM

  • User #90 mention Malvina Ortiz mentioned you in a post

    2/25/2026, 5:54:03 PM

User #174 follow Myrtie Daniel started following you

2/26/2026, 4:37:33 AM

User #238 system System notification

8/3/2025, 4:05:32 AM

User #214 like Gerald Lind liked your post

6/1/2025, 9:19:31 AM

User #16 like Arnaldo Friesen liked your post

8/14/2025, 7:07:38 AM

User #182 system System notification

1/6/2026, 9:34:38 PM

User #23 mention Matilde Beahan mentioned you in a post

3/19/2026, 5:30:24 AM

Showing first 6 of 24 on this page.

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

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

res = requests.get(
    "https://example-data.com/api/v1/notifications",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 25,
      "userId": 174,
      "type": "follow",
      "title": "Myrtie Daniel started following you",
      "body": "Timor stillicidium curiositas vis tenus ipsam decimus aperiam sortitus.",
      "isRead": false,
      "link": "https://example.com/follow/4oMGDaQC",
      "createdAt": "2026-02-26T04:37:33.717Z"
    },
    {
      "id": 26,
      "userId": 238,
      "type": "system",
      "title": "System notification",
      "body": "Omnis voluntarius pecco tepesco quam carus absorbeo decumbo.",
      "isRead": true,
      "link": "https://example.com/system/Ci26Jh2v",
      "createdAt": "2025-08-03T04:05:32.002Z"
    },
    {
      "id": 27,
      "userId": 214,
      "type": "like",
      "title": "Gerald Lind liked your post",
      "body": "Contego tumultus uberrime.",
      "isRead": true,
      "link": "https://example.com/like/Y7ENhg1T",
      "createdAt": "2025-06-01T09:19:31.174Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 2000,
    "totalPages": 84
  },
  "links": {
    "self": "/api/v1/notifications?page=2",
    "next": "/api/v1/notifications?page=3",
    "prev": "/api/v1/notifications?page=1"
  }
}
Draftbit