example-data.com
Menu
Browse docs and collections

Overview

notifications / #393

Activity #393

User #56 like Americo Hoppe liked your post

5/28/2025, 10:17:48 PM

Component variants

Medium
Small

User #56 like Americo Hoppe liked your post · 5/28/2025, 10:17:48 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 393,
  "userId": 56,
  "type": "like",
  "title": "Americo Hoppe liked your post",
  "body": "Clam aegrus clementia.",
  "isRead": false,
  "link": "https://example.com/like/WjdQiFXE",
  "createdAt": "2025-05-28T22:17:48.340Z"
}