Comment #318
· 7/14/2025
Supellex atrox ipsum esse. Urbanus amoveo sublime angulus sursum sol laboriosam appositus.
Overview
comments / #318
Supellex atrox ipsum esse. Urbanus amoveo sublime angulus sursum sol laboriosam appositus.
Comment #318
7/14/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/318" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/318" ); 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/318"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/318"
)
comment = res.json() Response
{
"id": 318,
"userId": 160,
"targetType": "post",
"targetId": 464,
"body": "Supellex atrox ipsum esse. Urbanus amoveo sublime angulus sursum sol laboriosam appositus.",
"isEdited": false,
"createdAt": "2025-07-14T18:33:03.179Z",
"updatedAt": "2025-07-14T18:33:03.179Z"
}