example-data.com
Menu
Browse docs and collections

Overview

notifications / #1638

Activity #1638

User #74 mention Antoinette Greenfelder mentioned you in a post

9/13/2025, 12:08:02 PM

Component variants

Medium
Small

User #74 mention Antoinette Greenfelder mentioned you in a post · 9/13/2025, 12:08:02 PM

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/notifications/1638" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/notifications/1638"
);
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/1638"
);
const notification = (await res.json()) as Notification;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/notifications/1638"
)
notification = res.json()

Response

{
  "id": 1638,
  "userId": 74,
  "type": "mention",
  "title": "Antoinette Greenfelder mentioned you in a post",
  "body": "Vox tamdiu socius.",
  "isRead": false,
  "link": "https://example.com/mention/6YjV3_2Z",
  "createdAt": "2025-09-13T12:08:02.673Z"
}