example-data.com
Menu
Browse docs and collections

Overview

notifications / #1943

Activity #1943

User #215 follow Charity Crona started following you

10/8/2025, 6:52:54 AM

Component variants

Medium
Small

User #215 follow Charity Crona started following you · 10/8/2025, 6:52:54 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 1943,
  "userId": 215,
  "type": "follow",
  "title": "Charity Crona started following you",
  "body": "Suadeo video deleo custodia uredo consectetur ceno solus timidus.",
  "isRead": false,
  "link": "https://example.com/follow/u6pnsJKm",
  "createdAt": "2025-10-08T06:52:54.785Z"
}