example-data.com
Menu
Browse docs and collections

Overview

notifications / #1882

Activity #1882

User #10 like Rosella Homenick liked your post

6/9/2025, 2:20:19 AM

Component variants

Medium
Small

User #10 like Rosella Homenick liked your post · 6/9/2025, 2:20:19 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 1882,
  "userId": 10,
  "type": "like",
  "title": "Rosella Homenick liked your post",
  "body": "Sonitus vitae sonitus valens arx acquiro sodalitas centum cervus.",
  "isRead": false,
  "link": "https://example.com/like/NBXEDxX0",
  "createdAt": "2025-06-09T02:20:19.851Z"
}