Comment #722
· 9/4/2025
Absconditus alo quam thema color ventus coruscus truculenter curtus unus.
Overview
comments / #722
Absconditus alo quam thema color ventus coruscus truculenter curtus unus.
Comment #722
9/4/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/722" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/722" ); 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/722"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/722"
)
comment = res.json() Response
{
"id": 722,
"userId": 11,
"targetType": "post",
"targetId": 274,
"body": "Absconditus alo quam thema color ventus coruscus truculenter curtus unus.",
"isEdited": false,
"createdAt": "2025-09-04T22:52:39.858Z",
"updatedAt": "2025-09-04T22:52:39.858Z"
}