Comment #552
· 5/11/2026
Solvo cena officiis absque thymum sint commodo illo. Avaritia aegre vorago confugo cenaculum vilicus facere absconditus benigne.
Overview
comments / #552
Solvo cena officiis absque thymum sint commodo illo. Avaritia aegre vorago confugo cenaculum vilicus facere absconditus benigne.
Comment #552
5/11/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/552" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/552" ); 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/552"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/552"
)
comment = res.json() Response
{
"id": 552,
"userId": 168,
"targetType": "post",
"targetId": 311,
"body": "Solvo cena officiis absque thymum sint commodo illo. Avaritia aegre vorago confugo cenaculum vilicus facere absconditus benigne.",
"isEdited": true,
"createdAt": "2026-05-11T14:50:55.243Z",
"updatedAt": "2026-05-19T14:32:09.064Z"
}