Comment #8
· 9/23/2025
Creo demonstro teneo.
comments / #8
Creo demonstro teneo.
Comment #8
9/23/2025
curl -sS \
"https://example-data.com/api/v1/comments/8" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/8"
);
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/8"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/8"
)
comment = res.json() {
"id": 8,
"userId": 44,
"targetType": "post",
"targetId": 254,
"body": "Creo demonstro teneo.",
"isEdited": false,
"createdAt": "2025-09-23T09:30:41.921Z",
"updatedAt": "2025-09-23T09:30:41.921Z"
}