Activity #282
User #249 like Lemuel Jast liked your post
4/8/2026, 4:35:18 PM
Overview
notifications / #282
User #249 like Lemuel Jast liked your post
4/8/2026, 4:35:18 PM
User #249 like Lemuel Jast liked your post
4/8/2026, 4:35:18 PM
View recordUser #249 like Lemuel Jast liked your post · 4/8/2026, 4:35:18 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/282" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/282" ); 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/282"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/282"
)
notification = res.json() Response
{
"id": 282,
"userId": 249,
"type": "like",
"title": "Lemuel Jast liked your post",
"body": "Cibus derelinquo repudiandae vomer aeneus culpa studio curriculum apto.",
"isRead": false,
"link": "https://example.com/like/1fg23yie",
"createdAt": "2026-04-08T16:35:18.900Z"
}