Activity #1885
User #154 like Carley Gleichner liked your post
2/14/2026, 2:19:36 PM
Overview
notifications / #1885
User #154 like Carley Gleichner liked your post
2/14/2026, 2:19:36 PM
User #154 like Carley Gleichner liked your post
2/14/2026, 2:19:36 PM
View recordUser #154 like Carley Gleichner liked your post · 2/14/2026, 2:19:36 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1885" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1885" ); 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/1885"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1885"
)
notification = res.json() Response
{
"id": 1885,
"userId": 154,
"type": "like",
"title": "Carley Gleichner liked your post",
"body": "Amicitia vitiosus cura ustulo fuga desparatus.",
"isRead": false,
"link": null,
"createdAt": "2026-02-14T14:19:36.682Z"
}