example-data.com
Menu
Browse docs and collections

Overview

notifications / #643

Activity #643

User #10 like Jameson Considine liked your post

4/17/2026, 9:46:59 PM

Component variants

Medium
Small

User #10 like Jameson Considine liked your post · 4/17/2026, 9:46:59 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 643,
  "userId": 10,
  "type": "like",
  "title": "Jameson Considine liked your post",
  "body": "Tutamen conventus tersus nihil ceno contigo.",
  "isRead": true,
  "link": "https://example.com/like/oGRJ2ow9",
  "createdAt": "2026-04-17T21:46:59.410Z"
}