Comment #758
· 4/17/2025
Denego ullus voluptatibus aveho. Crux abundans tantum porro tempus absconditus carus vado odio.
Overview
comments / #758
Denego ullus voluptatibus aveho. Crux abundans tantum porro tempus absconditus carus vado odio.
Comment #758
4/17/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/758" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/758" ); 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/758"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/758"
)
comment = res.json() Response
{
"id": 758,
"userId": 233,
"targetType": "post",
"targetId": 399,
"body": "Denego ullus voluptatibus aveho. Crux abundans tantum porro tempus absconditus carus vado odio.",
"isEdited": false,
"createdAt": "2025-04-17T04:43:54.343Z",
"updatedAt": "2025-04-17T04:43:54.343Z"
}