Comment #848
· 8/29/2025
Stella comptus minima sequi delectatio defleo. Dolorem apparatus aggero arguo demergo verbum repellendus ex totus.
Overview
comments / #848
Stella comptus minima sequi delectatio defleo. Dolorem apparatus aggero arguo demergo verbum repellendus ex totus.
Comment #848
8/29/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/848" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/848" ); 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/848"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/848"
)
comment = res.json() Response
{
"id": 848,
"userId": 241,
"targetType": "post",
"targetId": 12,
"body": "Stella comptus minima sequi delectatio defleo. Dolorem apparatus aggero arguo demergo verbum repellendus ex totus.",
"isEdited": false,
"createdAt": "2025-08-29T21:02:58.352Z",
"updatedAt": "2025-08-29T21:02:58.352Z"
}