Comment #172
· 10/25/2025
Conspergo aspernatur defero ullus antiquus vapulus copiose eius adinventitias vicissitudo.
comments / #172
Conspergo aspernatur defero ullus antiquus vapulus copiose eius adinventitias vicissitudo.
Comment #172
10/25/2025
curl -sS \
"https://example-data.com/api/v1/comments/172" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/172"
);
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/172"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/172"
)
comment = res.json() {
"id": 172,
"userId": 240,
"targetType": "post",
"targetId": 417,
"body": "Conspergo aspernatur defero ullus antiquus vapulus copiose eius adinventitias vicissitudo.",
"isEdited": false,
"createdAt": "2025-10-25T16:29:43.637Z",
"updatedAt": "2025-10-25T16:29:43.637Z"
}