Comment #1021
· 5/18/2025
Condico ager vilitas suffragium aperte coaegresco dolorum apparatus. Quaerat comptus thermae. Cognatus usus absum.
Overview
comments / #1021
Condico ager vilitas suffragium aperte coaegresco dolorum apparatus. Quaerat comptus thermae. Cognatus usus absum.
Comment #1021
5/18/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1021" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1021" ); 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/1021"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1021"
)
comment = res.json() Response
{
"id": 1021,
"userId": 223,
"targetType": "post",
"targetId": 368,
"body": "Condico ager vilitas suffragium aperte coaegresco dolorum apparatus. Quaerat comptus thermae. Cognatus usus absum.",
"isEdited": true,
"createdAt": "2025-05-18T04:46:15.889Z",
"updatedAt": "2025-07-09T02:40:32.838Z"
}