Comment #468
· 7/29/2025
Bis caelum admoneo ratione depromo aegrotatio sordeo vespillo corrumpo. Caries appositus aduro approbo conturbo video cetera cui.
Overview
comments / #468
Bis caelum admoneo ratione depromo aegrotatio sordeo vespillo corrumpo. Caries appositus aduro approbo conturbo video cetera cui.
Comment #468
7/29/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/468" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/468" ); 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/468"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/468"
)
comment = res.json() Response
{
"id": 468,
"userId": 29,
"targetType": "post",
"targetId": 289,
"body": "Bis caelum admoneo ratione depromo aegrotatio sordeo vespillo corrumpo. Caries appositus aduro approbo conturbo video cetera cui.",
"isEdited": false,
"createdAt": "2025-07-29T18:55:32.617Z",
"updatedAt": "2025-07-29T18:55:32.617Z"
}