example-data.com
Menu
Browse docs and collections

Overview

notifications / #834

Activity #834

User #152 follow Oran Torphy started following you

7/23/2025, 7:33:05 PM

Component variants

Medium
Small

User #152 follow Oran Torphy started following you · 7/23/2025, 7:33:05 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 834,
  "userId": 152,
  "type": "follow",
  "title": "Oran Torphy started following you",
  "body": "Depromo dens aestas admitto provident crebro unde deleniti amoveo.",
  "isRead": false,
  "link": "https://example.com/follow/kC-G6f1v",
  "createdAt": "2025-07-23T19:33:05.295Z"
}