Comment #94
· 11/13/2025
Synagoga vindico temporibus artificiose.
comments / #94
Synagoga vindico temporibus artificiose.
Comment #94
11/13/2025
curl -sS \
"https://example-data.com/api/v1/comments/94" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/94"
);
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/94"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/94"
)
comment = res.json() {
"id": 94,
"userId": 22,
"targetType": "post",
"targetId": 500,
"body": "Synagoga vindico temporibus artificiose.",
"isEdited": false,
"createdAt": "2025-11-13T05:14:17.134Z",
"updatedAt": "2025-11-13T05:14:17.134Z"
}