Comment #1308
· 2/22/2026
Tumultus sustineo uter.
Overview
comments / #1308
Tumultus sustineo uter.
Comment #1308
2/22/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1308" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1308" ); 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/1308"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1308"
)
comment = res.json() Response
{
"id": 1308,
"userId": 192,
"targetType": "post",
"targetId": 38,
"body": "Tumultus sustineo uter.",
"isEdited": true,
"createdAt": "2026-02-22T08:52:35.664Z",
"updatedAt": "2026-04-12T05:22:27.373Z"
}