Activity #905
User #183 mention Roberta Mueller-Yundt mentioned you in a post
7/7/2025, 9:35:44 PM
Overview
notifications / #905
User #183 mention Roberta Mueller-Yundt mentioned you in a post
7/7/2025, 9:35:44 PM
User #183 mention Roberta Mueller-Yundt mentioned you in a post
7/7/2025, 9:35:44 PM
View recordUser #183 mention Roberta Mueller-Yundt mentioned you in a post · 7/7/2025, 9:35:44 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/905" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/905" ); 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/905"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/905"
)
notification = res.json() Response
{
"id": 905,
"userId": 183,
"type": "mention",
"title": "Roberta Mueller-Yundt mentioned you in a post",
"body": "Paulatim absum voveo adulescens vacuus cogito nulla antepono.",
"isRead": false,
"link": null,
"createdAt": "2025-07-07T21:35:44.805Z"
}