Activity #652
User #131 like Roma Durgan liked your post
5/22/2025, 4:32:15 AM
Overview
notifications / #652
User #131 like Roma Durgan liked your post
5/22/2025, 4:32:15 AM
User #131 like Roma Durgan liked your post
5/22/2025, 4:32:15 AM
View recordUser #131 like Roma Durgan liked your post · 5/22/2025, 4:32:15 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/652" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/652" ); 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/652"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/652"
)
notification = res.json() Response
{
"id": 652,
"userId": 131,
"type": "like",
"title": "Roma Durgan liked your post",
"body": "Charisma contigo crapula cinis voluptate demulceo laboriosam uredo tero corpus.",
"isRead": true,
"link": "https://example.com/like/cgB2RVYC",
"createdAt": "2025-05-22T04:32:15.014Z"
}