Comment #1170
· 5/30/2024
Depopulo acceptus alii auctus casso blandior alo. Uredo dignissimos traho ater possimus solum thymbra. Conatus uberrime coniecto dignissimos.
Overview
comments / #1170
Depopulo acceptus alii auctus casso blandior alo. Uredo dignissimos traho ater possimus solum thymbra. Conatus uberrime coniecto dignissimos.
Comment #1170
5/30/2024
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1170" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1170" ); 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/1170"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1170"
)
comment = res.json() Response
{
"id": 1170,
"userId": 157,
"targetType": "post",
"targetId": 207,
"body": "Depopulo acceptus alii auctus casso blandior alo. Uredo dignissimos traho ater possimus solum thymbra. Conatus uberrime coniecto dignissimos.",
"isEdited": true,
"createdAt": "2024-05-30T17:46:30.018Z",
"updatedAt": "2026-03-14T00:06:09.011Z"
}