Comment #7
· 8/22/2024
Vestigium abduco cervus trepide deputo adinventitias tunc enim quidem ullus.
comments / #7
Vestigium abduco cervus trepide deputo adinventitias tunc enim quidem ullus.
Comment #7
8/22/2024
curl -sS \
"https://example-data.com/api/v1/comments/7" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/7"
);
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/7"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/7"
)
comment = res.json() {
"id": 7,
"userId": 194,
"targetType": "post",
"targetId": 474,
"body": "Vestigium abduco cervus trepide deputo adinventitias tunc enim quidem ullus.",
"isEdited": false,
"createdAt": "2024-08-22T23:08:11.723Z",
"updatedAt": "2024-08-22T23:08:11.723Z"
}