Comment #195
· 12/23/2025
Alius arma bos dolor alveus demitto socius acerbitas culpo. Uberrime abundans torrens.
comments / #195
Alius arma bos dolor alveus demitto socius acerbitas culpo. Uberrime abundans torrens.
Comment #195
12/23/2025
curl -sS \
"https://example-data.com/api/v1/comments/195" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/195"
);
const comment = await res.json();import type { Comment } from "https://example-data.com/types/comments.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/comments/195"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/195"
)
comment = res.json() {
"id": 195,
"userId": 78,
"targetType": "post",
"targetId": 163,
"body": "Alius arma bos dolor alveus demitto socius acerbitas culpo. Uberrime abundans torrens.",
"isEdited": false,
"createdAt": "2025-12-23T15:32:05.528Z",
"updatedAt": "2025-12-23T15:32:05.528Z"
}