Comment #369
· 1/2/2025
Thesis thermae vaco caute aetas abutor. Conspergo vivo uxor defleo cursus aperio peccatus ter cohaero.
Overview
comments / #369
Thesis thermae vaco caute aetas abutor. Conspergo vivo uxor defleo cursus aperio peccatus ter cohaero.
Comment #369
1/2/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/369" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/369" ); 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/369"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/369"
)
comment = res.json() Response
{
"id": 369,
"userId": 214,
"targetType": "post",
"targetId": 162,
"body": "Thesis thermae vaco caute aetas abutor. Conspergo vivo uxor defleo cursus aperio peccatus ter cohaero.",
"isEdited": false,
"createdAt": "2025-01-02T05:01:58.681Z",
"updatedAt": "2025-01-02T05:01:58.681Z"
}