example-data.com
Menu
Browse docs and collections

Overview

notifications / #1730

Activity #1730

User #232 follow Berniece Medhurst started following you

2/18/2026, 5:50:46 PM

Component variants

Medium
Small

User #232 follow Berniece Medhurst started following you · 2/18/2026, 5:50:46 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 1730,
  "userId": 232,
  "type": "follow",
  "title": "Berniece Medhurst started following you",
  "body": "Alter optio iure coma cui excepturi congregatio.",
  "isRead": false,
  "link": "https://example.com/follow/AS_lkKqN",
  "createdAt": "2026-02-18T17:50:46.210Z"
}