Comment #232
· 6/2/2024
Caelum ager inflammatio veritas tondeo paulatim libero cattus. Qui cognomen arca sollers sophismata deserunt tabula.
comments / #232
Caelum ager inflammatio veritas tondeo paulatim libero cattus. Qui cognomen arca sollers sophismata deserunt tabula.
Comment #232
6/2/2024
curl -sS \
"https://example-data.com/api/v1/comments/232" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/232"
);
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/232"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/232"
)
comment = res.json() {
"id": 232,
"userId": 206,
"targetType": "post",
"targetId": 45,
"body": "Caelum ager inflammatio veritas tondeo paulatim libero cattus. Qui cognomen arca sollers sophismata deserunt tabula.",
"isEdited": false,
"createdAt": "2024-06-02T22:54:40.951Z",
"updatedAt": "2024-06-02T22:54:40.951Z"
}