Activity #492
User #85 like Maryam Kunze liked your post
7/14/2025, 11:14:18 AM
Overview
notifications / #492
User #85 like Maryam Kunze liked your post
7/14/2025, 11:14:18 AM
User #85 like Maryam Kunze liked your post
7/14/2025, 11:14:18 AM
View recordUser #85 like Maryam Kunze liked your post · 7/14/2025, 11:14:18 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/492" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/492" ); 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/492"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/492"
)
notification = res.json() Response
{
"id": 492,
"userId": 85,
"type": "like",
"title": "Maryam Kunze liked your post",
"body": "Tabernus terebro eaque urbs stultus derideo.",
"isRead": false,
"link": "https://example.com/like/U5fMsnBk",
"createdAt": "2025-07-14T11:14:18.956Z"
}