Comment #569
· 2/14/2025
Nisi cariosus blandior colo aspernatur earum verto strues bene. Decipio cogito vestigium. Dignissimos cribro villa tempora conculco canonicus stips.
Overview
comments / #569
Nisi cariosus blandior colo aspernatur earum verto strues bene. Decipio cogito vestigium. Dignissimos cribro villa tempora conculco canonicus stips.
Comment #569
2/14/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/569" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/569" ); 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/569"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/569"
)
comment = res.json() Response
{
"id": 569,
"userId": 63,
"targetType": "post",
"targetId": 26,
"body": "Nisi cariosus blandior colo aspernatur earum verto strues bene. Decipio cogito vestigium. Dignissimos cribro villa tempora conculco canonicus stips.",
"isEdited": false,
"createdAt": "2025-02-14T00:24:50.921Z",
"updatedAt": "2025-02-14T00:24:50.921Z"
}