Comment #195
· 12/23/2025
Alius arma bos dolor alveus demitto socius acerbitas culpo. Uberrime abundans torrens.
Overview
comments / #195
Alius arma bos dolor alveus demitto socius acerbitas culpo. Uberrime abundans torrens.
Comment #195
12/23/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/195" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/195" ); 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/195"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/195"
)
comment = res.json() Response
{
"id": 195,
"userId": 78,
"targetType": "post",
"targetId": 163,
"body": "Alius arma bos dolor alveus demitto socius acerbitas culpo. Uberrime abundans torrens.",
"isEdited": false,
"createdAt": "2025-12-23T15:32:05.528Z",
"updatedAt": "2025-12-23T15:32:05.528Z"
}