example-data.com
Menu
Browse docs and collections

Overview

notifications / #572

Activity #572

User #15 like Wendy Borer liked your post

5/24/2025, 2:18:13 AM

Component variants

Medium
Small

User #15 like Wendy Borer liked your post · 5/24/2025, 2:18:13 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 572,
  "userId": 15,
  "type": "like",
  "title": "Wendy Borer liked your post",
  "body": "Cur deleniti suggero blanditiis benigne earum tibi.",
  "isRead": false,
  "link": "https://example.com/like/r_4lLd54",
  "createdAt": "2025-05-24T02:18:13.787Z"
}