example-data.com
Menu
Browse docs and collections

Overview

notifications / #346

Activity #346

User #226 follow Wiley Rodriguez started following you

3/24/2026, 5:30:17 PM

Component variants

Medium
Small

User #226 follow Wiley Rodriguez started following you · 3/24/2026, 5:30:17 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 346,
  "userId": 226,
  "type": "follow",
  "title": "Wiley Rodriguez started following you",
  "body": "Terebro umerus ab hic spero perferendis ambitus.",
  "isRead": false,
  "link": "https://example.com/follow/97yThkBU",
  "createdAt": "2026-03-24T17:30:17.353Z"
}