Comment #264
· 9/24/2025
Cito terreo spero cohaero.
comments / #264
Cito terreo spero cohaero.
Comment #264
9/24/2025
curl -sS \
"https://example-data.com/api/v1/comments/264" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/264"
);
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/264"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/264"
)
comment = res.json() {
"id": 264,
"userId": 51,
"targetType": "post",
"targetId": 444,
"body": "Cito terreo spero cohaero.",
"isEdited": false,
"createdAt": "2025-09-24T08:37:19.381Z",
"updatedAt": "2025-09-24T08:37:19.381Z"
}