Comment #916
· 5/3/2025
Vulgo totam tametsi amplus sumptus.
Overview
comments / #916
Vulgo totam tametsi amplus sumptus.
Comment #916
5/3/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/916" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/916" ); 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/916"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/916"
)
comment = res.json() Response
{
"id": 916,
"userId": 100,
"targetType": "post",
"targetId": 412,
"body": "Vulgo totam tametsi amplus sumptus.",
"isEdited": false,
"createdAt": "2025-05-03T03:56:50.195Z",
"updatedAt": "2025-05-03T03:56:50.195Z"
}