Comment #388
· 4/12/2025
Sum depopulo ab campana. Curis totam verbum cursim. Cohibeo inflammatio ea aspicio quisquam.
Overview
comments / #388
Sum depopulo ab campana. Curis totam verbum cursim. Cohibeo inflammatio ea aspicio quisquam.
Comment #388
4/12/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/388" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/388" ); 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/388"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/388"
)
comment = res.json() Response
{
"id": 388,
"userId": 73,
"targetType": "post",
"targetId": 487,
"body": "Sum depopulo ab campana. Curis totam verbum cursim. Cohibeo inflammatio ea aspicio quisquam.",
"isEdited": false,
"createdAt": "2025-04-12T23:33:29.523Z",
"updatedAt": "2025-04-12T23:33:29.523Z"
}