Activity #1201
User #193 like Jamal Gerhold liked your post
10/17/2025, 12:56:59 PM
Overview
notifications / #1201
User #193 like Jamal Gerhold liked your post
10/17/2025, 12:56:59 PM
User #193 like Jamal Gerhold liked your post
10/17/2025, 12:56:59 PM
View recordUser #193 like Jamal Gerhold liked your post · 10/17/2025, 12:56:59 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1201" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1201" ); 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/1201"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1201"
)
notification = res.json() Response
{
"id": 1201,
"userId": 193,
"type": "like",
"title": "Jamal Gerhold liked your post",
"body": "Quas eaque universe stultus curis ustulo adopto velit.",
"isRead": true,
"link": "https://example.com/like/FEmz4esW",
"createdAt": "2025-10-17T12:56:59.028Z"
}