Comment #838
· 7/15/2025
Trepide charisma causa angelus aequitas. Demergo odit armarium ascisco altus crustulum suspendo. Cribro absconditus tergo aspernatur.
Overview
comments / #838
Trepide charisma causa angelus aequitas. Demergo odit armarium ascisco altus crustulum suspendo. Cribro absconditus tergo aspernatur.
Comment #838
7/15/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/838" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/838" ); 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/838"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/838"
)
comment = res.json() Response
{
"id": 838,
"userId": 59,
"targetType": "post",
"targetId": 109,
"body": "Trepide charisma causa angelus aequitas. Demergo odit armarium ascisco altus crustulum suspendo. Cribro absconditus tergo aspernatur.",
"isEdited": false,
"createdAt": "2025-07-15T02:42:22.486Z",
"updatedAt": "2025-07-15T02:42:22.486Z"
}