Activity #7
User #214 like Charlene Roberts liked your post
1/21/2026, 9:12:57 PM
Overview
notifications / #7
User #214 like Charlene Roberts liked your post
1/21/2026, 9:12:57 PM
User #214 like Charlene Roberts liked your post
1/21/2026, 9:12:57 PM
View recordUser #214 like Charlene Roberts liked your post · 1/21/2026, 9:12:57 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/7" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/7" ); 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/7"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/7"
)
notification = res.json() Response
{
"id": 7,
"userId": 214,
"type": "like",
"title": "Charlene Roberts liked your post",
"body": "Trado debilito tabula soleo.",
"isRead": false,
"link": "https://example.com/like/8VpfAFsR",
"createdAt": "2026-01-21T21:12:57.824Z"
}