Comment #776
· 2/24/2025
Vilis dicta allatus adulescens aestivus calcar. Speculum tantillus tolero ceno bestia quae corpus stillicidium coadunatio. Enim tam in adfero communis certus.
Overview
comments / #776
Vilis dicta allatus adulescens aestivus calcar. Speculum tantillus tolero ceno bestia quae corpus stillicidium coadunatio. Enim tam in adfero communis certus.
Comment #776
2/24/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/776" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/776" ); 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/776"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/776"
)
comment = res.json() Response
{
"id": 776,
"userId": 70,
"targetType": "post",
"targetId": 128,
"body": "Vilis dicta allatus adulescens aestivus calcar. Speculum tantillus tolero ceno bestia quae corpus stillicidium coadunatio. Enim tam in adfero communis certus.",
"isEdited": false,
"createdAt": "2025-02-24T01:04:54.410Z",
"updatedAt": "2025-02-24T01:04:54.410Z"
}