Comment #125
· 12/16/2025
Ipsam vos turba valens. Vulgaris crastinus comis.
Overview
comments / #125
Ipsam vos turba valens. Vulgaris crastinus comis.
Comment #125
12/16/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/125" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/125" ); 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/125"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/125"
)
comment = res.json() Response
{
"id": 125,
"userId": 76,
"targetType": "post",
"targetId": 302,
"body": "Ipsam vos turba valens. Vulgaris crastinus comis.",
"isEdited": true,
"createdAt": "2025-12-16T07:31:17.102Z",
"updatedAt": "2025-12-26T11:12:35.239Z"
}