Comment #562
· 3/7/2026
Terga ver tego optio bestia vindico. Ante textor summopere. Spoliatio adulescens tabesco benevolentia thesaurus sum tribuo.
comments / #562
Terga ver tego optio bestia vindico. Ante textor summopere. Spoliatio adulescens tabesco benevolentia thesaurus sum tribuo.
Comment #562
3/7/2026
curl -sS \
"https://example-data.com/api/v1/comments/562" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/562"
);
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/562"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/562"
)
comment = res.json() {
"id": 562,
"userId": 58,
"targetType": "post",
"targetId": 85,
"body": "Terga ver tego optio bestia vindico. Ante textor summopere. Spoliatio adulescens tabesco benevolentia thesaurus sum tribuo.",
"isEdited": false,
"createdAt": "2026-03-07T10:29:54.514Z",
"updatedAt": "2026-03-07T10:29:54.514Z"
}