Activity #1184
User #79 like D'angelo Kling liked your post
5/20/2026, 5:14:43 AM
Overview
notifications / #1184
User #79 like D'angelo Kling liked your post
5/20/2026, 5:14:43 AM
User #79 like D'angelo Kling liked your post
5/20/2026, 5:14:43 AM
View recordUser #79 like D'angelo Kling liked your post · 5/20/2026, 5:14:43 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1184" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1184" ); 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/1184"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1184"
)
notification = res.json() Response
{
"id": 1184,
"userId": 79,
"type": "like",
"title": "D'angelo Kling liked your post",
"body": "Tabgo denuo cedo conturbo adstringo.",
"isRead": false,
"link": "https://example.com/like/sO-PwQ9i",
"createdAt": "2026-05-20T05:14:43.417Z"
}