Comment #990
· 11/20/2025
Enim nesciunt bene agnitio. Sufficio officia perspiciatis apud aperte bibo. Vesco centum sublime tametsi crastinus aequus stultus adipiscor adhaero conventus.
Overview
comments / #990
Enim nesciunt bene agnitio. Sufficio officia perspiciatis apud aperte bibo. Vesco centum sublime tametsi crastinus aequus stultus adipiscor adhaero conventus.
Comment #990
11/20/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/990" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/990" ); 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/990"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/990"
)
comment = res.json() Response
{
"id": 990,
"userId": 33,
"targetType": "post",
"targetId": 110,
"body": "Enim nesciunt bene agnitio. Sufficio officia perspiciatis apud aperte bibo. Vesco centum sublime tametsi crastinus aequus stultus adipiscor adhaero conventus.",
"isEdited": false,
"createdAt": "2025-11-20T23:27:01.449Z",
"updatedAt": "2025-11-20T23:27:01.449Z"
}