Activity #254
User #116 like Theresia Collins liked your post
6/11/2025, 11:00:40 PM
Overview
notifications / #254
User #116 like Theresia Collins liked your post
6/11/2025, 11:00:40 PM
User #116 like Theresia Collins liked your post
6/11/2025, 11:00:40 PM
View recordUser #116 like Theresia Collins liked your post · 6/11/2025, 11:00:40 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/254" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/254" ); 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/254"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/254"
)
notification = res.json() Response
{
"id": 254,
"userId": 116,
"type": "like",
"title": "Theresia Collins liked your post",
"body": "Certe omnis decumbo voluptate abeo vapulus carus enim valetudo exercitationem.",
"isRead": true,
"link": "https://example.com/like/eX80PC6F",
"createdAt": "2025-06-11T23:00:40.840Z"
}