example-data.com
Menu
Browse docs and collections

Overview

notifications / #13

Activity #13

User #146 like Wiley Rodriguez liked your post

2/6/2026, 6:05:17 AM

Component variants

Medium
Small

User #146 like Wiley Rodriguez liked your post · 2/6/2026, 6:05:17 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 13,
  "userId": 146,
  "type": "like",
  "title": "Wiley Rodriguez liked your post",
  "body": "Vae amor adstringo enim tibi suppellex.",
  "isRead": false,
  "link": "https://example.com/like/OsxKEM2o",
  "createdAt": "2026-02-06T06:05:17.492Z"
}