Comment #992
· 5/12/2025
Ascisco corporis sol cicuta dicta speculum. Venio caput ait crudelis. Curtus verecundia tego cetera. Sperno addo creber aegre patior cattus.
Overview
comments / #992
Ascisco corporis sol cicuta dicta speculum. Venio caput ait crudelis. Curtus verecundia tego cetera. Sperno addo creber aegre patior cattus.
Comment #992
5/12/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/992" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/992" ); 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/992"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/992"
)
comment = res.json() Response
{
"id": 992,
"userId": 170,
"targetType": "post",
"targetId": 154,
"body": "Ascisco corporis sol cicuta dicta speculum. Venio caput ait crudelis. Curtus verecundia tego cetera. Sperno addo creber aegre patior cattus.",
"isEdited": false,
"createdAt": "2025-05-12T10:06:33.091Z",
"updatedAt": "2025-05-12T10:06:33.091Z"
}