Activity #1587
User #90 like Whitney O'Reilly liked your post
7/7/2025, 10:11:22 AM
Overview
notifications / #1587
User #90 like Whitney O'Reilly liked your post
7/7/2025, 10:11:22 AM
User #90 like Whitney O'Reilly liked your post
7/7/2025, 10:11:22 AM
View recordUser #90 like Whitney O'Reilly liked your post · 7/7/2025, 10:11:22 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1587" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1587" ); 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/1587"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1587"
)
notification = res.json() Response
{
"id": 1587,
"userId": 90,
"type": "like",
"title": "Whitney O'Reilly liked your post",
"body": "Minima excepturi adulescens thermae collum cernuus concedo decet clam.",
"isRead": false,
"link": "https://example.com/like/gtM36_zn",
"createdAt": "2025-07-07T10:11:22.102Z"
}