Comment #264
· 9/24/2025
Cito terreo spero cohaero.
Overview
comments / #264
Cito terreo spero cohaero.
Comment #264
9/24/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/264" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/264" ); 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/264"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/264"
)
comment = res.json() Response
{
"id": 264,
"userId": 51,
"targetType": "post",
"targetId": 444,
"body": "Cito terreo spero cohaero.",
"isEdited": false,
"createdAt": "2025-09-24T08:37:19.381Z",
"updatedAt": "2025-09-24T08:37:19.381Z"
}