example-data.com
Menu
Browse docs and collections

Overview

notifications / #1412

Activity #1412

User #228 reply Filiberto Fay replied to your comment

6/3/2025, 2:59:32 PM

Component variants

Medium
Small

User #228 reply Filiberto Fay replied to your comment · 6/3/2025, 2:59:32 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 1412,
  "userId": 228,
  "type": "reply",
  "title": "Filiberto Fay replied to your comment",
  "body": "Quis crustulum abscido sperno clam conor desidero carpo excepturi.",
  "isRead": false,
  "link": "https://example.com/reply/f7XDkfTH",
  "createdAt": "2025-06-03T14:59:32.563Z"
}