Activity #387
User #20 like Maymie Boehm liked your post
2/16/2026, 2:45:12 PM
Overview
notifications / #387
User #20 like Maymie Boehm liked your post
2/16/2026, 2:45:12 PM
User #20 like Maymie Boehm liked your post
2/16/2026, 2:45:12 PM
View recordUser #20 like Maymie Boehm liked your post · 2/16/2026, 2:45:12 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/387" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/387" ); 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/387"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/387"
)
notification = res.json() Response
{
"id": 387,
"userId": 20,
"type": "like",
"title": "Maymie Boehm liked your post",
"body": "Dapifer depromo voluptatibus dolorum.",
"isRead": true,
"link": null,
"createdAt": "2026-02-16T14:45:12.304Z"
}