Activity #848
User #130 like Virginie O'Connell liked your post
4/7/2026, 9:10:22 AM
Overview
notifications / #848
User #130 like Virginie O'Connell liked your post
4/7/2026, 9:10:22 AM
User #130 like Virginie O'Connell liked your post
4/7/2026, 9:10:22 AM
View recordUser #130 like Virginie O'Connell liked your post · 4/7/2026, 9:10:22 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/848" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/848" ); 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/848"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/848"
)
notification = res.json() Response
{
"id": 848,
"userId": 130,
"type": "like",
"title": "Virginie O'Connell liked your post",
"body": "Cogito tubineus caelum valens voluptatibus adulatio.",
"isRead": false,
"link": "https://example.com/like/yZaTv4II",
"createdAt": "2026-04-07T09:10:22.504Z"
}