Comment #674
· 5/7/2026
Vaco deficio appono vergo statua iusto dolores vulgus deduco sodalitas. Suppono vilicus sumo temporibus ter averto videlicet repellendus valens.
Overview
comments / #674
Vaco deficio appono vergo statua iusto dolores vulgus deduco sodalitas. Suppono vilicus sumo temporibus ter averto videlicet repellendus valens.
Comment #674
5/7/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/674" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/674" ); 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/674"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/674"
)
comment = res.json() Response
{
"id": 674,
"userId": 169,
"targetType": "post",
"targetId": 136,
"body": "Vaco deficio appono vergo statua iusto dolores vulgus deduco sodalitas. Suppono vilicus sumo temporibus ter averto videlicet repellendus valens.",
"isEdited": false,
"createdAt": "2026-05-07T03:10:39.515Z",
"updatedAt": "2026-05-07T03:10:39.515Z"
}