example-data.com
Menu
Browse docs and collections

Overview

notifications / #613

Activity #613

User #125 like Joseph Steuber liked your post

8/7/2025, 11:24:35 PM

Component variants

Medium
Small

User #125 like Joseph Steuber liked your post · 8/7/2025, 11:24:35 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 613,
  "userId": 125,
  "type": "like",
  "title": "Joseph Steuber liked your post",
  "body": "Currus adulatio tubineus.",
  "isRead": true,
  "link": "https://example.com/like/jKAaCPKp",
  "createdAt": "2025-08-07T23:24:35.989Z"
}