Comment #186
· 5/26/2024
Quasi approbo deorsum. Deduco aggero eveniet.
comments / #186
Quasi approbo deorsum. Deduco aggero eveniet.
Comment #186
5/26/2024
curl -sS \
"https://example-data.com/api/v1/comments/186" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/186"
);
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/186"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/186"
)
comment = res.json() {
"id": 186,
"userId": 226,
"targetType": "post",
"targetId": 492,
"body": "Quasi approbo deorsum. Deduco aggero eveniet.",
"isEdited": false,
"createdAt": "2024-05-26T18:51:06.346Z",
"updatedAt": "2024-05-26T18:51:06.346Z"
}