Comment #217
· 3/11/2026
Appono animi nulla denego assentator. Pecco perferendis succurro succurro usque odit turba debilito magnam.
Overview
comments / #217
Appono animi nulla denego assentator. Pecco perferendis succurro succurro usque odit turba debilito magnam.
Comment #217
3/11/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/217" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/217" ); 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/217"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/217"
)
comment = res.json() Response
{
"id": 217,
"userId": 131,
"targetType": "post",
"targetId": 234,
"body": "Appono animi nulla denego assentator. Pecco perferendis succurro succurro usque odit turba debilito magnam.",
"isEdited": false,
"createdAt": "2026-03-11T21:44:26.112Z",
"updatedAt": "2026-03-11T21:44:26.112Z"
}