Comment #1404
· 7/22/2025
Abstergo harum socius certus perferendis caecus artificiose cupiditas ventus desolo.
Overview
comments / #1404
Abstergo harum socius certus perferendis caecus artificiose cupiditas ventus desolo.
Comment #1404
7/22/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1404" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1404" ); 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/1404"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1404"
)
comment = res.json() Response
{
"id": 1404,
"userId": 176,
"targetType": "post",
"targetId": 125,
"body": "Abstergo harum socius certus perferendis caecus artificiose cupiditas ventus desolo.",
"isEdited": false,
"createdAt": "2025-07-22T08:43:53.568Z",
"updatedAt": "2025-07-22T08:43:53.568Z"
}