Comment #235
· 5/4/2026
Molestias bos absum administratio vomer creator.
Overview
comments / #235
Molestias bos absum administratio vomer creator.
Comment #235
5/4/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/235" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/235" ); 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/235"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/235"
)
comment = res.json() Response
{
"id": 235,
"userId": 58,
"targetType": "post",
"targetId": 306,
"body": "Molestias bos absum administratio vomer creator.",
"isEdited": false,
"createdAt": "2026-05-04T21:27:58.010Z",
"updatedAt": "2026-05-04T21:27:58.010Z"
}