Comment #1216
· 7/23/2024
Valeo sonitus coma sodalitas peccatus curtus spiritus tunc. Teneo accusator magnam certus.
Overview
comments / #1216
Valeo sonitus coma sodalitas peccatus curtus spiritus tunc. Teneo accusator magnam certus.
Comment #1216
7/23/2024
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1216" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1216" ); 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/1216"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1216"
)
comment = res.json() Response
{
"id": 1216,
"userId": 125,
"targetType": "post",
"targetId": 156,
"body": "Valeo sonitus coma sodalitas peccatus curtus spiritus tunc. Teneo accusator magnam certus.",
"isEdited": true,
"createdAt": "2024-07-23T17:44:59.452Z",
"updatedAt": "2026-03-03T10:45:16.355Z"
}