example-data.com
Menu
Browse docs and collections

Overview

notifications / #243

Activity #243

User #201 mention Sheridan Turcotte mentioned you in a post

5/18/2026, 1:11:03 AM

Component variants

Medium
Small

User #201 mention Sheridan Turcotte mentioned you in a post · 5/18/2026, 1:11:03 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 243,
  "userId": 201,
  "type": "mention",
  "title": "Sheridan Turcotte mentioned you in a post",
  "body": "Arbitro pauci varius fugiat voveo tonsor adfectus.",
  "isRead": true,
  "link": "https://example.com/mention/mKsq-k9E",
  "createdAt": "2026-05-18T01:11:03.059Z"
}