Activity #1807
User #149 like Cassidy Boehm liked your post
4/27/2026, 8:16:54 AM
Overview
notifications / #1807
User #149 like Cassidy Boehm liked your post
4/27/2026, 8:16:54 AM
User #149 like Cassidy Boehm liked your post
4/27/2026, 8:16:54 AM
View recordUser #149 like Cassidy Boehm liked your post · 4/27/2026, 8:16:54 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1807" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1807" ); 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/1807"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1807"
)
notification = res.json() Response
{
"id": 1807,
"userId": 149,
"type": "like",
"title": "Cassidy Boehm liked your post",
"body": "Atrocitas universe ventosus deludo aspicio tempore conculco.",
"isRead": false,
"link": null,
"createdAt": "2026-04-27T08:16:54.195Z"
}