Activity #57
User #100 like Aaron Fritsch liked your post
4/3/2026, 1:56:26 AM
Overview
notifications / #57
User #100 like Aaron Fritsch liked your post
4/3/2026, 1:56:26 AM
User #100 like Aaron Fritsch liked your post
4/3/2026, 1:56:26 AM
View recordUser #100 like Aaron Fritsch liked your post · 4/3/2026, 1:56:26 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/57" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/57" ); 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/57"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/57"
)
notification = res.json() Response
{
"id": 57,
"userId": 100,
"type": "like",
"title": "Aaron Fritsch liked your post",
"body": "Crustulum audio cur impedit bellum corporis cubitum conduco.",
"isRead": true,
"link": "https://example.com/like/x7nHTw0x",
"createdAt": "2026-04-03T01:56:26.582Z"
}