Activity #1417
User #161 like Era Mitchell liked your post
5/18/2026, 11:36:47 AM
Overview
notifications / #1417
User #161 like Era Mitchell liked your post
5/18/2026, 11:36:47 AM
User #161 like Era Mitchell liked your post
5/18/2026, 11:36:47 AM
View recordUser #161 like Era Mitchell liked your post · 5/18/2026, 11:36:47 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1417" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1417" ); 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/1417"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1417"
)
notification = res.json() Response
{
"id": 1417,
"userId": 161,
"type": "like",
"title": "Era Mitchell liked your post",
"body": "Abscido stipes tabella vesco cito cariosus denego valeo.",
"isRead": true,
"link": "https://example.com/like/5nyCjGWZ",
"createdAt": "2026-05-18T11:36:47.873Z"
}