Comment #70
· 3/21/2026
Tergiversatio suppellex cursus degenero bis caelum suppellex. Totam venio arma summisse.
comments / #70
Tergiversatio suppellex cursus degenero bis caelum suppellex. Totam venio arma summisse.
Comment #70
3/21/2026
curl -sS \
"https://example-data.com/api/v1/comments/70" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/70"
);
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/70"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/70"
)
comment = res.json() {
"id": 70,
"userId": 124,
"targetType": "post",
"targetId": 212,
"body": "Tergiversatio suppellex cursus degenero bis caelum suppellex. Totam venio arma summisse.",
"isEdited": false,
"createdAt": "2026-03-21T20:20:03.204Z",
"updatedAt": "2026-03-21T20:20:03.204Z"
}