Activity #851
User #33 like Kaden Brekke liked your post
7/13/2025, 7:37:05 AM
Overview
notifications / #851
User #33 like Kaden Brekke liked your post
7/13/2025, 7:37:05 AM
User #33 like Kaden Brekke liked your post
7/13/2025, 7:37:05 AM
View recordUser #33 like Kaden Brekke liked your post · 7/13/2025, 7:37:05 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/851" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/851" ); 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/851"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/851"
)
notification = res.json() Response
{
"id": 851,
"userId": 33,
"type": "like",
"title": "Kaden Brekke liked your post",
"body": "Decet quos aeternus verto.",
"isRead": false,
"link": "https://example.com/like/su8tN6-E",
"createdAt": "2025-07-13T07:37:05.605Z"
}