Activity #545
User #104 like Brock Hackett liked your post
5/14/2026, 4:20:57 AM
Overview
notifications / #545
User #104 like Brock Hackett liked your post
5/14/2026, 4:20:57 AM
User #104 like Brock Hackett liked your post
5/14/2026, 4:20:57 AM
View recordUser #104 like Brock Hackett liked your post · 5/14/2026, 4:20:57 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/545" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/545" ); 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/545"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/545"
)
notification = res.json() Response
{
"id": 545,
"userId": 104,
"type": "like",
"title": "Brock Hackett liked your post",
"body": "Adduco animadverto suppellex tersus fugit vis velociter.",
"isRead": true,
"link": "https://example.com/like/WH0ujV-_",
"createdAt": "2026-05-14T04:20:57.214Z"
}