Comment #17
· 12/4/2024
Ater thema conculco adfectus arbor ustilo.
comments / #17
Ater thema conculco adfectus arbor ustilo.
Comment #17
12/4/2024
curl -sS \
"https://example-data.com/api/v1/comments/17" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/17"
);
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/17"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/17"
)
comment = res.json() {
"id": 17,
"userId": 24,
"targetType": "post",
"targetId": 26,
"body": "Ater thema conculco adfectus arbor ustilo.",
"isEdited": true,
"createdAt": "2024-12-04T12:40:27.038Z",
"updatedAt": "2025-04-14T19:23:23.088Z"
}