Comment #491
· 9/16/2025
Ter sordeo ut statua vacuus absens aspernatur strues vobis.
Overview
comments / #491
Ter sordeo ut statua vacuus absens aspernatur strues vobis.
Comment #491
9/16/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/491" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/491" ); 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/491"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/491"
)
comment = res.json() Response
{
"id": 491,
"userId": 52,
"targetType": "post",
"targetId": 92,
"body": "Ter sordeo ut statua vacuus absens aspernatur strues vobis.",
"isEdited": false,
"createdAt": "2025-09-16T04:53:11.455Z",
"updatedAt": "2025-09-16T04:53:11.455Z"
}