Comment #905
· 6/15/2025
Pectus vivo comprehendo supplanto maxime ambulo voveo. Abstergo tener autus ait avarus quasi repellat.
Overview
comments / #905
Pectus vivo comprehendo supplanto maxime ambulo voveo. Abstergo tener autus ait avarus quasi repellat.
Comment #905
6/15/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/905" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/905" ); 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/905"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/905"
)
comment = res.json() Response
{
"id": 905,
"userId": 237,
"targetType": "post",
"targetId": 328,
"body": "Pectus vivo comprehendo supplanto maxime ambulo voveo. Abstergo tener autus ait avarus quasi repellat.",
"isEdited": true,
"createdAt": "2025-06-15T12:26:30.443Z",
"updatedAt": "2025-11-08T16:31:03.126Z"
}