Activity #510
User #115 like Ricky Langosh liked your post
3/6/2026, 8:42:44 PM
Overview
notifications / #510
User #115 like Ricky Langosh liked your post
3/6/2026, 8:42:44 PM
User #115 like Ricky Langosh liked your post
3/6/2026, 8:42:44 PM
View recordUser #115 like Ricky Langosh liked your post · 3/6/2026, 8:42:44 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/510" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/510" ); 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/510"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/510"
)
notification = res.json() Response
{
"id": 510,
"userId": 115,
"type": "like",
"title": "Ricky Langosh liked your post",
"body": "Dolor xiphias vesper altus.",
"isRead": false,
"link": "https://example.com/like/EFX8TFbz",
"createdAt": "2026-03-06T20:42:44.233Z"
}