Comment #953
· 7/14/2025
Quasi tametsi vir abeo alter. Ullam spectaculum peior demoror carpo sodalitas benevolentia defetiscor solutio. Tendo tergo atavus amo adversus damnatio praesentium caries.
Overview
comments / #953
Quasi tametsi vir abeo alter. Ullam spectaculum peior demoror carpo sodalitas benevolentia defetiscor solutio. Tendo tergo atavus amo adversus damnatio praesentium caries.
Comment #953
7/14/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/953" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/953" ); 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/953"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/953"
)
comment = res.json() Response
{
"id": 953,
"userId": 125,
"targetType": "post",
"targetId": 458,
"body": "Quasi tametsi vir abeo alter. Ullam spectaculum peior demoror carpo sodalitas benevolentia defetiscor solutio. Tendo tergo atavus amo adversus damnatio praesentium caries.",
"isEdited": false,
"createdAt": "2025-07-14T04:07:20.992Z",
"updatedAt": "2025-07-14T04:07:20.992Z"
}