Comment #225
· 11/13/2025
Crur exercitationem sulum.
comments / #225
Crur exercitationem sulum.
Comment #225
11/13/2025
curl -sS \
"https://example-data.com/api/v1/comments/225" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/225"
);
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/225"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/225"
)
comment = res.json() {
"id": 225,
"userId": 250,
"targetType": "post",
"targetId": 180,
"body": "Crur exercitationem sulum.",
"isEdited": false,
"createdAt": "2025-11-13T15:33:26.117Z",
"updatedAt": "2025-11-13T15:33:26.117Z"
}