Activity #1157
User #8 mention Douglas Frami mentioned you in a post
5/21/2026, 3:05:38 PM
Overview
notifications / #1157
User #8 mention Douglas Frami mentioned you in a post
5/21/2026, 3:05:38 PM
User #8 mention Douglas Frami mentioned you in a post
5/21/2026, 3:05:38 PM
View recordUser #8 mention Douglas Frami mentioned you in a post · 5/21/2026, 3:05:38 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1157" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1157" ); 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/1157"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1157"
)
notification = res.json() Response
{
"id": 1157,
"userId": 8,
"type": "mention",
"title": "Douglas Frami mentioned you in a post",
"body": "Comminor contigo venia avarus dignissimos odit subnecto timidus sperno voro.",
"isRead": false,
"link": null,
"createdAt": "2026-05-21T15:05:38.866Z"
}