Comment #806
· 3/9/2025
Sodalitas cumque verumtamen pecto curia adicio abutor. Demens claudeo unus depopulo ara corrigo triduana.
Overview
comments / #806
Sodalitas cumque verumtamen pecto curia adicio abutor. Demens claudeo unus depopulo ara corrigo triduana.
Comment #806
3/9/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/806" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/806" ); 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/806"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/806"
)
comment = res.json() Response
{
"id": 806,
"userId": 36,
"targetType": "post",
"targetId": 29,
"body": "Sodalitas cumque verumtamen pecto curia adicio abutor. Demens claudeo unus depopulo ara corrigo triduana.",
"isEdited": false,
"createdAt": "2025-03-09T01:41:12.301Z",
"updatedAt": "2025-03-09T01:41:12.301Z"
}