Activity #496
User #250 follow Chyna Kozey started following you
6/2/2025, 10:00:54 PM
Overview
notifications / #496
User #250 follow Chyna Kozey started following you
6/2/2025, 10:00:54 PM
User #250 follow Chyna Kozey started following you
6/2/2025, 10:00:54 PM
View recordUser #250 follow Chyna Kozey started following you · 6/2/2025, 10:00:54 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/496" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/496" ); 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/496"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/496"
)
notification = res.json() Response
{
"id": 496,
"userId": 250,
"type": "follow",
"title": "Chyna Kozey started following you",
"body": "Temperantia tepesco defaeco torqueo advoco exercitationem corporis coepi.",
"isRead": false,
"link": "https://example.com/follow/nYdd7MAt",
"createdAt": "2025-06-02T22:00:54.780Z"
}