Comment #1297
· 6/8/2025
Corona brevis allatus nihil peior doloribus vero. Creber neque vir aeger nesciunt ultra theca tonsor impedit.
Overview
comments / #1297
Corona brevis allatus nihil peior doloribus vero. Creber neque vir aeger nesciunt ultra theca tonsor impedit.
Comment #1297
6/8/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1297" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1297" ); 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/1297"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1297"
)
comment = res.json() Response
{
"id": 1297,
"userId": 78,
"targetType": "post",
"targetId": 24,
"body": "Corona brevis allatus nihil peior doloribus vero. Creber neque vir aeger nesciunt ultra theca tonsor impedit.",
"isEdited": false,
"createdAt": "2025-06-08T21:14:46.308Z",
"updatedAt": "2025-06-08T21:14:46.308Z"
}