Comment #68
· 5/24/2024
Subito caterva addo adduco. Ater aestivus coma spectaculum coerceo aurum ambitus. Delibero tergum vicinus cernuus tenuis comes vitae.
comments / #68
Subito caterva addo adduco. Ater aestivus coma spectaculum coerceo aurum ambitus. Delibero tergum vicinus cernuus tenuis comes vitae.
Comment #68
5/24/2024
curl -sS \
"https://example-data.com/api/v1/comments/68" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/68"
);
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/68"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/68"
)
comment = res.json() {
"id": 68,
"userId": 247,
"targetType": "post",
"targetId": 26,
"body": "Subito caterva addo adduco. Ater aestivus coma spectaculum coerceo aurum ambitus. Delibero tergum vicinus cernuus tenuis comes vitae.",
"isEdited": false,
"createdAt": "2024-05-24T01:59:08.685Z",
"updatedAt": "2024-05-24T01:59:08.685Z"
}