Comment #154
· 5/6/2025
Cometes conduco timidus vinum.
comments / #154
Cometes conduco timidus vinum.
Comment #154
5/6/2025
curl -sS \
"https://example-data.com/api/v1/comments/154" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/154"
);
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/154"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/154"
)
comment = res.json() {
"id": 154,
"userId": 27,
"targetType": "post",
"targetId": 104,
"body": "Cometes conduco timidus vinum.",
"isEdited": false,
"createdAt": "2025-05-06T17:55:59.707Z",
"updatedAt": "2025-05-06T17:55:59.707Z"
}