Comment #1148
· 6/7/2025
Absconditus strues adulescens adiuvo virgo copiose. Nobis ustilo conor. Subiungo tumultus laudantium. Capillus consequuntur bos.
Overview
comments / #1148
Absconditus strues adulescens adiuvo virgo copiose. Nobis ustilo conor. Subiungo tumultus laudantium. Capillus consequuntur bos.
Comment #1148
6/7/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1148" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1148" ); 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/1148"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1148"
)
comment = res.json() Response
{
"id": 1148,
"userId": 163,
"targetType": "post",
"targetId": 137,
"body": "Absconditus strues adulescens adiuvo virgo copiose. Nobis ustilo conor. Subiungo tumultus laudantium. Capillus consequuntur bos.",
"isEdited": false,
"createdAt": "2025-06-07T12:26:49.189Z",
"updatedAt": "2025-06-07T12:26:49.189Z"
}