Activity #93
User #206 like Mckenna Hegmann-Price liked your post
2/27/2026, 9:58:38 AM
Overview
notifications / #93
User #206 like Mckenna Hegmann-Price liked your post
2/27/2026, 9:58:38 AM
User #206 like Mckenna Hegmann-Price liked your post
2/27/2026, 9:58:38 AM
View recordUser #206 like Mckenna Hegmann-Price liked your post · 2/27/2026, 9:58:38 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/93" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/93" ); 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/93"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/93"
)
notification = res.json() Response
{
"id": 93,
"userId": 206,
"type": "like",
"title": "Mckenna Hegmann-Price liked your post",
"body": "Texo virga tero.",
"isRead": false,
"link": "https://example.com/like/VAHPQF7s",
"createdAt": "2026-02-27T09:58:38.451Z"
}