Comment #174
· 7/3/2025
Coepi cauda molestias. Bardus desolo praesentium numquam tardus arx tandem solium. Terreo decipio minus comminor.
comments / #174
Coepi cauda molestias. Bardus desolo praesentium numquam tardus arx tandem solium. Terreo decipio minus comminor.
Comment #174
7/3/2025
curl -sS \
"https://example-data.com/api/v1/comments/174" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/174"
);
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/174"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/174"
)
comment = res.json() {
"id": 174,
"userId": 194,
"targetType": "post",
"targetId": 359,
"body": "Coepi cauda molestias. Bardus desolo praesentium numquam tardus arx tandem solium. Terreo decipio minus comminor.",
"isEdited": true,
"createdAt": "2025-07-03T00:20:23.330Z",
"updatedAt": "2025-07-21T18:19:01.424Z"
}