Activity #58
User #201 like Karolann Legros liked your post
12/1/2025, 5:12:29 AM
Overview
notifications / #58
User #201 like Karolann Legros liked your post
12/1/2025, 5:12:29 AM
User #201 like Karolann Legros liked your post
12/1/2025, 5:12:29 AM
View recordUser #201 like Karolann Legros liked your post · 12/1/2025, 5:12:29 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/58" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/58" ); 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/58"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/58"
)
notification = res.json() Response
{
"id": 58,
"userId": 201,
"type": "like",
"title": "Karolann Legros liked your post",
"body": "Valens ullus sonitus celebrer cresco itaque talio uterque contabesco.",
"isRead": true,
"link": "https://example.com/like/lw3x09lN",
"createdAt": "2025-12-01T05:12:29.059Z"
}