Comment #1115
· 1/6/2025
Apto corporis sum. Amitto solio neque vespillo nam illo colo totam tamdiu.
Overview
comments / #1115
Apto corporis sum. Amitto solio neque vespillo nam illo colo totam tamdiu.
Comment #1115
1/6/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1115" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1115" ); 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/1115"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1115"
)
comment = res.json() Response
{
"id": 1115,
"userId": 87,
"targetType": "post",
"targetId": 249,
"body": "Apto corporis sum. Amitto solio neque vespillo nam illo colo totam tamdiu.",
"isEdited": true,
"createdAt": "2025-01-06T07:41:21.754Z",
"updatedAt": "2026-02-10T01:09:54.204Z"
}