Comment #1103
· 5/2/2025
Iure perferendis aetas verumtamen coaegresco textus carus condico alias. Veniam fugiat tunc. Abstergo voveo ambulo callide sollicito claro suasoria somniculosus.
Overview
comments / #1103
Iure perferendis aetas verumtamen coaegresco textus carus condico alias. Veniam fugiat tunc. Abstergo voveo ambulo callide sollicito claro suasoria somniculosus.
Comment #1103
5/2/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1103" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1103" ); 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/1103"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1103"
)
comment = res.json() Response
{
"id": 1103,
"userId": 178,
"targetType": "post",
"targetId": 264,
"body": "Iure perferendis aetas verumtamen coaegresco textus carus condico alias. Veniam fugiat tunc. Abstergo voveo ambulo callide sollicito claro suasoria somniculosus.",
"isEdited": false,
"createdAt": "2025-05-02T01:02:57.895Z",
"updatedAt": "2025-05-02T01:02:57.895Z"
}