Activity #942
User #153 like Kenya Abshire liked your post
1/29/2026, 4:32:18 PM
Overview
notifications / #942
User #153 like Kenya Abshire liked your post
1/29/2026, 4:32:18 PM
User #153 like Kenya Abshire liked your post
1/29/2026, 4:32:18 PM
View recordUser #153 like Kenya Abshire liked your post · 1/29/2026, 4:32:18 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/942" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/942" ); 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/942"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/942"
)
notification = res.json() Response
{
"id": 942,
"userId": 153,
"type": "like",
"title": "Kenya Abshire liked your post",
"body": "Ut sordeo depraedor.",
"isRead": true,
"link": null,
"createdAt": "2026-01-29T16:32:18.236Z"
}