Comment #1230
· 7/29/2024
Vulpes aspernatur versus adimpleo tego altus.
Overview
comments / #1230
Vulpes aspernatur versus adimpleo tego altus.
Comment #1230
7/29/2024
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1230" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1230" ); 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/1230"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1230"
)
comment = res.json() Response
{
"id": 1230,
"userId": 91,
"targetType": "post",
"targetId": 425,
"body": "Vulpes aspernatur versus adimpleo tego altus.",
"isEdited": false,
"createdAt": "2024-07-29T07:34:01.413Z",
"updatedAt": "2024-07-29T07:34:01.413Z"
}