Comment #11
· 6/1/2025
Vos delibero velit civitas. Arma aperio tredecim natus pauci. Tabernus conduco torrens velociter tumultus. Universe velum textus.
comments / #11
Vos delibero velit civitas. Arma aperio tredecim natus pauci. Tabernus conduco torrens velociter tumultus. Universe velum textus.
Comment #11
6/1/2025
curl -sS \
"https://example-data.com/api/v1/comments/11" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/11"
);
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/11"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/11"
)
comment = res.json() {
"id": 11,
"userId": 209,
"targetType": "post",
"targetId": 482,
"body": "Vos delibero velit civitas. Arma aperio tredecim natus pauci. Tabernus conduco torrens velociter tumultus. Universe velum textus.",
"isEdited": false,
"createdAt": "2025-06-01T21:16:50.169Z",
"updatedAt": "2025-06-01T21:16:50.169Z"
}