Comment #603
· 5/17/2026
Viridis solum cohaero casso talus. Corrumpo agnosco celo angustus tres distinctio denique.
Overview
comments / #603
Viridis solum cohaero casso talus. Corrumpo agnosco celo angustus tres distinctio denique.
Comment #603
5/17/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/603" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/603" ); 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/603"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/603"
)
comment = res.json() Response
{
"id": 603,
"userId": 174,
"targetType": "post",
"targetId": 467,
"body": "Viridis solum cohaero casso talus. Corrumpo agnosco celo angustus tres distinctio denique.",
"isEdited": true,
"createdAt": "2026-05-17T02:03:53.133Z",
"updatedAt": "2026-05-18T13:56:04.975Z"
}