Comment #290
· 10/16/2024
Vivo chirographum perferendis. Labore optio sint degenero accedo.
Overview
comments / #290
Vivo chirographum perferendis. Labore optio sint degenero accedo.
Comment #290
10/16/2024
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/290" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/290" ); 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/290"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/290"
)
comment = res.json() Response
{
"id": 290,
"userId": 200,
"targetType": "post",
"targetId": 347,
"body": "Vivo chirographum perferendis. Labore optio sint degenero accedo.",
"isEdited": true,
"createdAt": "2024-10-16T13:33:47.294Z",
"updatedAt": "2025-04-18T16:49:51.599Z"
}