Comment #1001
· 8/9/2025
Congregatio adnuo verus derideo quia delicate cum ea corroboro. Coniecto amplexus deduco caput ad tempore.
Overview
comments / #1001
Congregatio adnuo verus derideo quia delicate cum ea corroboro. Coniecto amplexus deduco caput ad tempore.
Comment #1001
8/9/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1001" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1001" ); 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/1001"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1001"
)
comment = res.json() Response
{
"id": 1001,
"userId": 240,
"targetType": "post",
"targetId": 165,
"body": "Congregatio adnuo verus derideo quia delicate cum ea corroboro. Coniecto amplexus deduco caput ad tempore.",
"isEdited": false,
"createdAt": "2025-08-09T07:02:51.895Z",
"updatedAt": "2025-08-09T07:02:51.895Z"
}