Comment #914
· 11/26/2025
Tutis vestigium vobis atqui volubilis cultura.
Overview
comments / #914
Tutis vestigium vobis atqui volubilis cultura.
Comment #914
11/26/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/914" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/914" ); 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/914"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/914"
)
comment = res.json() Response
{
"id": 914,
"userId": 224,
"targetType": "post",
"targetId": 51,
"body": "Tutis vestigium vobis atqui volubilis cultura.",
"isEdited": false,
"createdAt": "2025-11-26T05:25:24.188Z",
"updatedAt": "2025-11-26T05:25:24.188Z"
}