Comment #828
· 12/18/2024
Arbor paulatim demonstro ipsam usque caterva thesaurus aranea demonstro. Commodo crur comburo depopulo celo alius derelinquo adulescens.
Overview
comments / #828
Arbor paulatim demonstro ipsam usque caterva thesaurus aranea demonstro. Commodo crur comburo depopulo celo alius derelinquo adulescens.
Comment #828
12/18/2024
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/828" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/828" ); 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/828"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/828"
)
comment = res.json() Response
{
"id": 828,
"userId": 199,
"targetType": "post",
"targetId": 445,
"body": "Arbor paulatim demonstro ipsam usque caterva thesaurus aranea demonstro. Commodo crur comburo depopulo celo alius derelinquo adulescens.",
"isEdited": false,
"createdAt": "2024-12-18T10:15:34.316Z",
"updatedAt": "2024-12-18T10:15:34.316Z"
}