example-data.com
Menu
Browse docs and collections

Overview

notifications / #76

Activity #76

User #59 follow Mckenna Hegmann-Price started following you

10/30/2025, 2:21:26 AM

Component variants

Medium
Small

User #59 follow Mckenna Hegmann-Price started following you · 10/30/2025, 2:21:26 AM

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/notifications/76"
);
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/76"
);
const notification = (await res.json()) as Notification;

Python example

import requests

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

Response

{
  "id": 76,
  "userId": 59,
  "type": "follow",
  "title": "Mckenna Hegmann-Price started following you",
  "body": "Cultura corrumpo possimus alias vespillo verbera creptio truculenter aqua cunctatio.",
  "isRead": false,
  "link": "https://example.com/follow/nnht6DFC",
  "createdAt": "2025-10-30T02:21:26.613Z"
}