Comment #130
· 1/13/2025
Uberrime dolore derideo officiis voluptatem vulnus.
comments / #130
Uberrime dolore derideo officiis voluptatem vulnus.
Comment #130
1/13/2025
curl -sS \
"https://example-data.com/api/v1/comments/130" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/130"
);
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/130"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/130"
)
comment = res.json() {
"id": 130,
"userId": 224,
"targetType": "post",
"targetId": 76,
"body": "Uberrime dolore derideo officiis voluptatem vulnus.",
"isEdited": false,
"createdAt": "2025-01-13T20:09:44.470Z",
"updatedAt": "2025-01-13T20:09:44.470Z"
}