Activity #792
User #234 like Oliver Mitchell liked your post
6/23/2025, 3:41:36 PM
Overview
notifications / #792
User #234 like Oliver Mitchell liked your post
6/23/2025, 3:41:36 PM
User #234 like Oliver Mitchell liked your post
6/23/2025, 3:41:36 PM
View recordUser #234 like Oliver Mitchell liked your post · 6/23/2025, 3:41:36 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/792" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/792" ); 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/792"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/792"
)
notification = res.json() Response
{
"id": 792,
"userId": 234,
"type": "like",
"title": "Oliver Mitchell liked your post",
"body": "Stella apparatus candidus copia tabella adiuvo.",
"isRead": false,
"link": "https://example.com/like/O9u3RF_U",
"createdAt": "2025-06-23T15:41:36.633Z"
}