Comment #1424
· 11/21/2025
Stella aestivus calamitas vulnus attollo. Vita voluptatum suffoco eveniet cotidie delicate dedico vero sonitus claustrum. Reprehenderit animi amitto administratio. Ascit toties amiculum asperiores campana fuga.
Overview
comments / #1424
Stella aestivus calamitas vulnus attollo. Vita voluptatum suffoco eveniet cotidie delicate dedico vero sonitus claustrum. Reprehenderit animi amitto administratio. Ascit toties amiculum asperiores campana fuga.
Comment #1424
11/21/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1424" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1424" ); const comment = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/comments.d.ts https://example-data.com/types/comments.d.ts
import type { Comment } from "./types/comments";
const res = await fetch(
"https://example-data.com/api/v1/comments/1424"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1424"
)
comment = res.json() Response
{
"id": 1424,
"userId": 30,
"targetType": "post",
"targetId": 203,
"body": "Stella aestivus calamitas vulnus attollo. Vita voluptatum suffoco eveniet cotidie delicate dedico vero sonitus claustrum. Reprehenderit animi amitto administratio. Ascit toties amiculum asperiores campana fuga.",
"isEdited": false,
"createdAt": "2025-11-21T00:35:02.656Z",
"updatedAt": "2025-11-21T00:35:02.656Z"
}