Comment #1118
· 2/4/2025
Arceo utroque ambitus desipio tardus. Abbas creo approbo celo celo crinis dolore. Supellex reiciendis illum.
Overview
comments / #1118
Arceo utroque ambitus desipio tardus. Abbas creo approbo celo celo crinis dolore. Supellex reiciendis illum.
Comment #1118
2/4/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1118" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1118" ); 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/1118"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1118"
)
comment = res.json() Response
{
"id": 1118,
"userId": 96,
"targetType": "post",
"targetId": 295,
"body": "Arceo utroque ambitus desipio tardus. Abbas creo approbo celo celo crinis dolore. Supellex reiciendis illum.",
"isEdited": false,
"createdAt": "2025-02-04T03:32:40.264Z",
"updatedAt": "2025-02-04T03:32:40.264Z"
}