Comment #466
· 10/22/2024
Suspendo viduo socius audentia teneo considero advenio sortitus terreo eligendi. Victus aranea clamo barba uterque adsum. Comminor tricesimus una.
Overview
comments / #466
Suspendo viduo socius audentia teneo considero advenio sortitus terreo eligendi. Victus aranea clamo barba uterque adsum. Comminor tricesimus una.
Comment #466
10/22/2024
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/466" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/466" ); const comment = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/comments.d.ts https://example-data.com/types/comments.d.ts
import type { Comment } from "./types/comments";
const res = await fetch(
"https://example-data.com/api/v1/comments/466"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/466"
)
comment = res.json() Response
{
"id": 466,
"userId": 231,
"targetType": "post",
"targetId": 218,
"body": "Suspendo viduo socius audentia teneo considero advenio sortitus terreo eligendi. Victus aranea clamo barba uterque adsum. Comminor tricesimus una.",
"isEdited": false,
"createdAt": "2024-10-22T19:23:18.372Z",
"updatedAt": "2024-10-22T19:23:18.372Z"
}