Comment #348
· 10/2/2025
Colligo uredo nesciunt.
Overview
comments / #348
Colligo uredo nesciunt.
Comment #348
10/2/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/348" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/348" ); 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/348"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/348"
)
comment = res.json() Response
{
"id": 348,
"userId": 186,
"targetType": "post",
"targetId": 201,
"body": "Colligo uredo nesciunt.",
"isEdited": true,
"createdAt": "2025-10-02T06:34:07.996Z",
"updatedAt": "2025-11-22T01:11:20.283Z"
}