Comment #1165
· 7/2/2025
Pecco sordeo abbas derideo expedita taedium tactus copiose vilitas.
Overview
comments / #1165
Pecco sordeo abbas derideo expedita taedium tactus copiose vilitas.
Comment #1165
7/2/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1165" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1165" ); 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/1165"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1165"
)
comment = res.json() Response
{
"id": 1165,
"userId": 213,
"targetType": "post",
"targetId": 49,
"body": "Pecco sordeo abbas derideo expedita taedium tactus copiose vilitas.",
"isEdited": false,
"createdAt": "2025-07-02T23:52:20.058Z",
"updatedAt": "2025-07-02T23:52:20.058Z"
}