Comment #1325
· 5/7/2025
Conscendo tolero cinis stultus. Audax auctus velum. Eum volaticus perferendis torrens cernuus terga eos.
Overview
comments / #1325
Conscendo tolero cinis stultus. Audax auctus velum. Eum volaticus perferendis torrens cernuus terga eos.
Comment #1325
5/7/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1325" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1325" ); 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/1325"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1325"
)
comment = res.json() Response
{
"id": 1325,
"userId": 13,
"targetType": "post",
"targetId": 437,
"body": "Conscendo tolero cinis stultus. Audax auctus velum. Eum volaticus perferendis torrens cernuus terga eos.",
"isEdited": false,
"createdAt": "2025-05-07T22:36:44.517Z",
"updatedAt": "2025-05-07T22:36:44.517Z"
}