Comment #255
· 5/24/2025
Thesaurus centum thymbra conatus labore suspendo thesaurus charisma deporto. Cura amitto adhuc decor virgo dicta. Alveus excepturi ago vomer corpus. Sum calculus arbustum.
Overview
comments / #255
Thesaurus centum thymbra conatus labore suspendo thesaurus charisma deporto. Cura amitto adhuc decor virgo dicta. Alveus excepturi ago vomer corpus. Sum calculus arbustum.
Comment #255
5/24/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/255" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/255" ); 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/255"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/255"
)
comment = res.json() Response
{
"id": 255,
"userId": 65,
"targetType": "post",
"targetId": 106,
"body": "Thesaurus centum thymbra conatus labore suspendo thesaurus charisma deporto. Cura amitto adhuc decor virgo dicta. Alveus excepturi ago vomer corpus. Sum calculus arbustum.",
"isEdited": false,
"createdAt": "2025-05-24T07:25:17.844Z",
"updatedAt": "2025-05-24T07:25:17.844Z"
}