Comment #684
· 12/21/2025
Astrum allatus curso illo. Comedo sortitus tandem blandior. Doloremque trucido verbera aqua vigilo fuga aggredior crastinus creo pecto.
Overview
comments / #684
Astrum allatus curso illo. Comedo sortitus tandem blandior. Doloremque trucido verbera aqua vigilo fuga aggredior crastinus creo pecto.
Comment #684
12/21/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/684" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/684" ); 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/684"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/684"
)
comment = res.json() Response
{
"id": 684,
"userId": 58,
"targetType": "post",
"targetId": 453,
"body": "Astrum allatus curso illo. Comedo sortitus tandem blandior. Doloremque trucido verbera aqua vigilo fuga aggredior crastinus creo pecto.",
"isEdited": false,
"createdAt": "2025-12-21T23:37:45.397Z",
"updatedAt": "2025-12-21T23:37:45.397Z"
}