Comment #900
· 3/20/2025
Clam pariatur cognomen aequitas. Currus villa tergum. Tyrannus derelinquo ustulo tabella decens coruscus. Theca voluptatum adduco ara asporto admoneo vomito.
Overview
comments / #900
Clam pariatur cognomen aequitas. Currus villa tergum. Tyrannus derelinquo ustulo tabella decens coruscus. Theca voluptatum adduco ara asporto admoneo vomito.
Comment #900
3/20/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/900" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/900" ); 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/900"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/900"
)
comment = res.json() Response
{
"id": 900,
"userId": 54,
"targetType": "post",
"targetId": 355,
"body": "Clam pariatur cognomen aequitas. Currus villa tergum. Tyrannus derelinquo ustulo tabella decens coruscus. Theca voluptatum adduco ara asporto admoneo vomito.",
"isEdited": false,
"createdAt": "2025-03-20T08:09:26.764Z",
"updatedAt": "2025-03-20T08:09:26.764Z"
}