Comment #267
· 5/29/2025
Cui cupiditas patrocinor subito. Impedit alias vehemens crudelis.
Overview
comments / #267
Cui cupiditas patrocinor subito. Impedit alias vehemens crudelis.
Comment #267
5/29/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/267" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/267" ); 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/267"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/267"
)
comment = res.json() Response
{
"id": 267,
"userId": 59,
"targetType": "post",
"targetId": 306,
"body": "Cui cupiditas patrocinor subito. Impedit alias vehemens crudelis.",
"isEdited": true,
"createdAt": "2025-05-29T11:12:20.088Z",
"updatedAt": "2025-10-17T10:14:52.330Z"
}