example-data.com
Menu
Browse docs and collections

Overview

notifications / #286

Activity #286

User #148 like Cruz Okuneva liked your post

6/26/2025, 1:12:31 AM

Component variants

Medium
Small

User #148 like Cruz Okuneva liked your post · 6/26/2025, 1:12:31 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 286,
  "userId": 148,
  "type": "like",
  "title": "Cruz Okuneva liked your post",
  "body": "Curis supellex creta tempore cubicularis ventosus.",
  "isRead": true,
  "link": null,
  "createdAt": "2025-06-26T01:12:31.686Z"
}