Comment #43
· 10/23/2025
Inflammatio vociferor toties. Cetera bos adnuo abeo adimpleo cado demulceo sperno.
Overview
comments / #43
Inflammatio vociferor toties. Cetera bos adnuo abeo adimpleo cado demulceo sperno.
Comment #43
10/23/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/43" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/43" ); 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/43"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/43"
)
comment = res.json() Response
{
"id": 43,
"userId": 205,
"targetType": "post",
"targetId": 81,
"body": "Inflammatio vociferor toties. Cetera bos adnuo abeo adimpleo cado demulceo sperno.",
"isEdited": false,
"createdAt": "2025-10-23T02:10:02.701Z",
"updatedAt": "2025-10-23T02:10:02.701Z"
}