Comment #657
· 4/3/2025
Sumptus decimus clarus ventosus. Alius adinventitias thema traho agnitio doloribus conor angelus tutamen.
Overview
comments / #657
Sumptus decimus clarus ventosus. Alius adinventitias thema traho agnitio doloribus conor angelus tutamen.
Comment #657
4/3/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/657" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/657" ); 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/657"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/657"
)
comment = res.json() Response
{
"id": 657,
"userId": 133,
"targetType": "post",
"targetId": 19,
"body": "Sumptus decimus clarus ventosus. Alius adinventitias thema traho agnitio doloribus conor angelus tutamen.",
"isEdited": false,
"createdAt": "2025-04-03T18:54:46.511Z",
"updatedAt": "2025-04-03T18:54:46.511Z"
}