Comment #484
· 8/26/2025
Molestias traho verumtamen degusto bestia. Vespillo dolorem molestiae cumque tollo absens sollers.
Overview
comments / #484
Molestias traho verumtamen degusto bestia. Vespillo dolorem molestiae cumque tollo absens sollers.
Comment #484
8/26/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/484" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/484" ); 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/484"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/484"
)
comment = res.json() Response
{
"id": 484,
"userId": 2,
"targetType": "post",
"targetId": 394,
"body": "Molestias traho verumtamen degusto bestia. Vespillo dolorem molestiae cumque tollo absens sollers.",
"isEdited": false,
"createdAt": "2025-08-26T17:22:17.294Z",
"updatedAt": "2025-08-26T17:22:17.294Z"
}