Comment #200
· 1/17/2026
Adfectus dolor desino speculum alveus torqueo vix cognomen combibo.
comments / #200
Adfectus dolor desino speculum alveus torqueo vix cognomen combibo.
Comment #200
1/17/2026
curl -sS \
"https://example-data.com/api/v1/comments/200" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/200"
);
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/200"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/200"
)
comment = res.json() {
"id": 200,
"userId": 13,
"targetType": "post",
"targetId": 146,
"body": "Adfectus dolor desino speculum alveus torqueo vix cognomen combibo.",
"isEdited": false,
"createdAt": "2026-01-17T12:42:08.842Z",
"updatedAt": "2026-01-17T12:42:08.842Z"
}