Comment #1493
· 9/16/2024
Tenuis turba tonsor aegre. Cetera tempora sint supra solutio abeo. Viduo censura voluptate.
comments / #1493
Tenuis turba tonsor aegre. Cetera tempora sint supra solutio abeo. Viduo censura voluptate.
Comment #1493
9/16/2024
curl -sS \
"https://example-data.com/api/v1/comments/1493" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/1493"
);
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/1493"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1493"
)
comment = res.json() {
"id": 1493,
"userId": 111,
"targetType": "post",
"targetId": 455,
"body": "Tenuis turba tonsor aegre. Cetera tempora sint supra solutio abeo. Viduo censura voluptate.",
"isEdited": false,
"createdAt": "2024-09-16T03:55:22.612Z",
"updatedAt": "2024-09-16T03:55:22.612Z"
}