example-data.com
Menu
Browse docs and collections

Overview

notifications / #664

Activity #664

User #119 follow Lamar Wilkinson started following you

1/24/2026, 7:11:05 PM

Component variants

Medium
Small

User #119 follow Lamar Wilkinson started following you · 1/24/2026, 7:11:05 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 664,
  "userId": 119,
  "type": "follow",
  "title": "Lamar Wilkinson started following you",
  "body": "Velociter stella culpo cohaero summa decumbo deserunt.",
  "isRead": false,
  "link": null,
  "createdAt": "2026-01-24T19:11:05.690Z"
}