example-data.com
Menu
Browse docs and collections

Overview

notifications / #254

Activity #254

User #116 like Theresia Collins liked your post

6/11/2025, 11:00:40 PM

Component variants

Medium
Small

User #116 like Theresia Collins liked your post · 6/11/2025, 11:00:40 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 254,
  "userId": 116,
  "type": "like",
  "title": "Theresia Collins liked your post",
  "body": "Certe omnis decumbo voluptate abeo vapulus carus enim valetudo exercitationem.",
  "isRead": true,
  "link": "https://example.com/like/eX80PC6F",
  "createdAt": "2025-06-11T23:00:40.840Z"
}