Comment #99
· 10/23/2025
Carmen traho pecco assentator corporis consectetur deludo absque. Adeo commodi teres corrumpo creo arto uxor tutis. Termes cattus deserunt.
Overview
comments / #99
Carmen traho pecco assentator corporis consectetur deludo absque. Adeo commodi teres corrumpo creo arto uxor tutis. Termes cattus deserunt.
Comment #99
10/23/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/99" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/99" ); 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/99"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/99"
)
comment = res.json() Response
{
"id": 99,
"userId": 214,
"targetType": "post",
"targetId": 164,
"body": "Carmen traho pecco assentator corporis consectetur deludo absque. Adeo commodi teres corrumpo creo arto uxor tutis. Termes cattus deserunt.",
"isEdited": false,
"createdAt": "2025-10-23T09:18:59.839Z",
"updatedAt": "2025-10-23T09:18:59.839Z"
}