Activity #310
User #54 mention Autumn Bartell mentioned you in a post
7/10/2025, 6:18:40 AM
Overview
notifications / #310
User #54 mention Autumn Bartell mentioned you in a post
7/10/2025, 6:18:40 AM
User #54 mention Autumn Bartell mentioned you in a post
7/10/2025, 6:18:40 AM
View recordUser #54 mention Autumn Bartell mentioned you in a post · 7/10/2025, 6:18:40 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/310" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/310" ); 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/310"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/310"
)
notification = res.json() Response
{
"id": 310,
"userId": 54,
"type": "mention",
"title": "Autumn Bartell mentioned you in a post",
"body": "Quasi bellicus tempora aedificium tam.",
"isRead": false,
"link": null,
"createdAt": "2025-07-10T06:18:40.670Z"
}