Comment #1164
· 12/22/2025
Magni asperiores cupio vindico abundans. Commodi vito crudelis vigor.
Overview
comments / #1164
Magni asperiores cupio vindico abundans. Commodi vito crudelis vigor.
Comment #1164
12/22/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1164" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1164" ); 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/1164"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1164"
)
comment = res.json() Response
{
"id": 1164,
"userId": 15,
"targetType": "post",
"targetId": 444,
"body": "Magni asperiores cupio vindico abundans. Commodi vito crudelis vigor.",
"isEdited": false,
"createdAt": "2025-12-22T20:50:21.623Z",
"updatedAt": "2025-12-22T20:50:21.623Z"
}