Comment #1421
· 1/16/2026
Culpa amita thermae adopto sponte. Iure territo cunae. Suscipio vestigium colligo tepidus animus. Varius error uter conturbo.
Overview
comments / #1421
Culpa amita thermae adopto sponte. Iure territo cunae. Suscipio vestigium colligo tepidus animus. Varius error uter conturbo.
Comment #1421
1/16/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1421" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1421" ); 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/1421"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1421"
)
comment = res.json() Response
{
"id": 1421,
"userId": 96,
"targetType": "post",
"targetId": 153,
"body": "Culpa amita thermae adopto sponte. Iure territo cunae. Suscipio vestigium colligo tepidus animus. Varius error uter conturbo.",
"isEdited": false,
"createdAt": "2026-01-16T14:57:00.625Z",
"updatedAt": "2026-01-16T14:57:00.625Z"
}