example-data.com
Menu
Browse docs and collections

Overview

notifications / #1695

Activity #1695

User #158 follow Porter Dooley started following you

10/16/2025, 7:58:25 AM

Component variants

Medium
Small

User #158 follow Porter Dooley started following you · 10/16/2025, 7:58:25 AM

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/notifications/1695" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/notifications/1695"
);
const notification = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/notifications.d.ts https://example-data.com/types/notifications.d.ts
import type { Notification } from "./types/notifications";

const res = await fetch(
  "https://example-data.com/api/v1/notifications/1695"
);
const notification = (await res.json()) as Notification;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/notifications/1695"
)
notification = res.json()

Response

{
  "id": 1695,
  "userId": 158,
  "type": "follow",
  "title": "Porter Dooley started following you",
  "body": "Crudelis comburo sto aestivus atrocitas est.",
  "isRead": false,
  "link": "https://example.com/follow/L7WBzf4a",
  "createdAt": "2025-10-16T07:58:25.194Z"
}