Comment #338
· 11/28/2024
Depereo casus agnosco desipio cupio una tres.
comments / #338
Depereo casus agnosco desipio cupio una tres.
Comment #338
11/28/2024
curl -sS \
"https://example-data.com/api/v1/comments/338" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/338"
);
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/338"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/338"
)
comment = res.json() {
"id": 338,
"userId": 44,
"targetType": "post",
"targetId": 415,
"body": "Depereo casus agnosco desipio cupio una tres.",
"isEdited": false,
"createdAt": "2024-11-28T15:18:29.834Z",
"updatedAt": "2024-11-28T15:18:29.834Z"
}