Comment #102
· 8/31/2025
Coadunatio civitas adhaero agnitio abeo verbera terreo facere solus.
comments / #102
Coadunatio civitas adhaero agnitio abeo verbera terreo facere solus.
Comment #102
8/31/2025
curl -sS \
"https://example-data.com/api/v1/comments/102" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/102"
);
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/102"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/102"
)
comment = res.json() {
"id": 102,
"userId": 64,
"targetType": "post",
"targetId": 58,
"body": "Coadunatio civitas adhaero agnitio abeo verbera terreo facere solus.",
"isEdited": false,
"createdAt": "2025-08-31T22:07:04.168Z",
"updatedAt": "2025-08-31T22:07:04.168Z"
}