Activity #248
User #156 like Cassidy Price-Schimmel liked your post
3/2/2026, 11:04:12 PM
Overview
notifications / #248
User #156 like Cassidy Price-Schimmel liked your post
3/2/2026, 11:04:12 PM
User #156 like Cassidy Price-Schimmel liked your post
3/2/2026, 11:04:12 PM
View recordUser #156 like Cassidy Price-Schimmel liked your post · 3/2/2026, 11:04:12 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/248" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/248" ); 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/248"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/248"
)
notification = res.json() Response
{
"id": 248,
"userId": 156,
"type": "like",
"title": "Cassidy Price-Schimmel liked your post",
"body": "Absque summa spoliatio.",
"isRead": true,
"link": "https://example.com/like/gHgTSmJC",
"createdAt": "2026-03-02T23:04:12.646Z"
}