example-data.com
Menu
Browse docs and collections

Overview

notifications / #877

Activity #877

User #26 like Frederic Armstrong liked your post

3/7/2026, 3:18:22 AM

Component variants

Medium
Small

User #26 like Frederic Armstrong liked your post · 3/7/2026, 3:18:22 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 877,
  "userId": 26,
  "type": "like",
  "title": "Frederic Armstrong liked your post",
  "body": "Virga sublime sumo deleo audeo ulciscor desparatus nam.",
  "isRead": true,
  "link": "https://example.com/like/wSIHAwCu",
  "createdAt": "2026-03-07T03:18:22.899Z"
}