Activity #1019
User #56 mention Jamal Gerhold mentioned you in a post
6/13/2025, 12:33:53 AM
Overview
notifications / #1019
User #56 mention Jamal Gerhold mentioned you in a post
6/13/2025, 12:33:53 AM
User #56 mention Jamal Gerhold mentioned you in a post
6/13/2025, 12:33:53 AM
View recordUser #56 mention Jamal Gerhold mentioned you in a post · 6/13/2025, 12:33:53 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1019" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1019" ); 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/1019"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1019"
)
notification = res.json() Response
{
"id": 1019,
"userId": 56,
"type": "mention",
"title": "Jamal Gerhold mentioned you in a post",
"body": "Vapulus tollo ter.",
"isRead": false,
"link": "https://example.com/mention/e3GXjX1a",
"createdAt": "2025-06-13T00:33:53.489Z"
}