Activity #411
User #228 like Jarrell Flatley liked your post
12/8/2025, 9:16:01 AM
Overview
notifications / #411
User #228 like Jarrell Flatley liked your post
12/8/2025, 9:16:01 AM
User #228 like Jarrell Flatley liked your post
12/8/2025, 9:16:01 AM
View recordUser #228 like Jarrell Flatley liked your post · 12/8/2025, 9:16:01 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/411" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/411" ); 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/411"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/411"
)
notification = res.json() Response
{
"id": 411,
"userId": 228,
"type": "like",
"title": "Jarrell Flatley liked your post",
"body": "Voluptatibus neque addo ustulo defero voluntarius.",
"isRead": false,
"link": "https://example.com/like/Taeoz1t_",
"createdAt": "2025-12-08T09:16:01.549Z"
}