Comment #669
· 2/5/2025
Somnus autus vigor apostolus tenetur vox ater umbra amiculum. Caelestis civis natus vado odio exercitationem.
Overview
comments / #669
Somnus autus vigor apostolus tenetur vox ater umbra amiculum. Caelestis civis natus vado odio exercitationem.
Comment #669
2/5/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/669" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/669" ); 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/669"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/669"
)
comment = res.json() Response
{
"id": 669,
"userId": 96,
"targetType": "post",
"targetId": 131,
"body": "Somnus autus vigor apostolus tenetur vox ater umbra amiculum. Caelestis civis natus vado odio exercitationem.",
"isEdited": false,
"createdAt": "2025-02-05T23:07:18.753Z",
"updatedAt": "2025-02-05T23:07:18.753Z"
}