Comment #60
· 9/22/2025
Comis explicabo studio truculenter.
Overview
comments / #60
Comis explicabo studio truculenter.
Comment #60
9/22/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/60" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/60" ); 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/60"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/60"
)
comment = res.json() Response
{
"id": 60,
"userId": 100,
"targetType": "post",
"targetId": 481,
"body": "Comis explicabo studio truculenter.",
"isEdited": false,
"createdAt": "2025-09-22T01:05:51.527Z",
"updatedAt": "2025-09-22T01:05:51.527Z"
}