example-data.com
Menu
Browse docs and collections

Overview

notifications / #801

Activity #801

User #23 like Anne Hamill liked your post

6/29/2025, 8:36:03 AM

Component variants

Medium
Small

User #23 like Anne Hamill liked your post · 6/29/2025, 8:36:03 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 801,
  "userId": 23,
  "type": "like",
  "title": "Anne Hamill liked your post",
  "body": "Agnitio demergo admiratio.",
  "isRead": true,
  "link": "https://example.com/like/XyybEdPH",
  "createdAt": "2025-06-29T08:36:03.663Z"
}