Comment #720
· 3/31/2025
Caritas officiis bibo mollitia sequi peccatus tollo decor. Adhaero triduana varius aegre pel cribro. Autus acceptus aer.
Overview
comments / #720
Caritas officiis bibo mollitia sequi peccatus tollo decor. Adhaero triduana varius aegre pel cribro. Autus acceptus aer.
Comment #720
3/31/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/720" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/720" ); 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/720"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/720"
)
comment = res.json() Response
{
"id": 720,
"userId": 64,
"targetType": "post",
"targetId": 10,
"body": "Caritas officiis bibo mollitia sequi peccatus tollo decor. Adhaero triduana varius aegre pel cribro. Autus acceptus aer.",
"isEdited": false,
"createdAt": "2025-03-31T02:01:46.307Z",
"updatedAt": "2025-03-31T02:01:46.307Z"
}