Comment #565
· 1/10/2026
Accommodo peior tergeo cedo molestias ambitus carpo. Maiores arguo sponte caries tergum coniuratio nulla bellum conturbo.
Overview
comments / #565
Accommodo peior tergeo cedo molestias ambitus carpo. Maiores arguo sponte caries tergum coniuratio nulla bellum conturbo.
Comment #565
1/10/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/565" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/565" ); 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/565"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/565"
)
comment = res.json() Response
{
"id": 565,
"userId": 43,
"targetType": "post",
"targetId": 159,
"body": "Accommodo peior tergeo cedo molestias ambitus carpo. Maiores arguo sponte caries tergum coniuratio nulla bellum conturbo.",
"isEdited": false,
"createdAt": "2026-01-10T07:12:39.049Z",
"updatedAt": "2026-01-10T07:12:39.049Z"
}