example-data.com
Menu
Browse docs and collections

Overview

notifications / #1061

Activity #1061

User #184 follow Mckenna Hegmann-Price started following you

5/11/2026, 5:13:36 AM

Component variants

Medium
Small

User #184 follow Mckenna Hegmann-Price started following you · 5/11/2026, 5:13:36 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 1061,
  "userId": 184,
  "type": "follow",
  "title": "Mckenna Hegmann-Price started following you",
  "body": "Terror voluptate traho blanditiis supra vulnus nulla.",
  "isRead": false,
  "link": "https://example.com/follow/v66iIV98",
  "createdAt": "2026-05-11T05:13:36.320Z"
}