Activity #34
User #207 like Jadon Nicolas liked your post
5/28/2025, 5:59:52 PM
Overview
notifications / #34
User #207 like Jadon Nicolas liked your post
5/28/2025, 5:59:52 PM
User #207 like Jadon Nicolas liked your post
5/28/2025, 5:59:52 PM
View recordUser #207 like Jadon Nicolas liked your post · 5/28/2025, 5:59:52 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/34" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/34" ); 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/34"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/34"
)
notification = res.json() Response
{
"id": 34,
"userId": 207,
"type": "like",
"title": "Jadon Nicolas liked your post",
"body": "Utique aeternus complectus candidus minus deorsum combibo defaeco succurro carcer.",
"isRead": true,
"link": null,
"createdAt": "2025-05-28T17:59:52.638Z"
}