example-data.com
Menu
Browse docs and collections

Overview

notifications / #1820

Activity #1820

User #117 like Rupert Lebsack liked your post

3/18/2026, 11:05:42 AM

Component variants

Medium
Small

User #117 like Rupert Lebsack liked your post · 3/18/2026, 11:05:42 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 1820,
  "userId": 117,
  "type": "like",
  "title": "Rupert Lebsack liked your post",
  "body": "Totidem accedo addo demens substantia curto tergeo.",
  "isRead": false,
  "link": "https://example.com/like/Z-mhytZj",
  "createdAt": "2026-03-18T11:05:42.528Z"
}