Comment #1036
· 5/20/2025
Synagoga tardus defero decor. Accommodo arcesso alias acceptus concido cunctatio nulla ait coniuratio occaecati. Tondeo coaegresco coniecto.
Overview
comments / #1036
Synagoga tardus defero decor. Accommodo arcesso alias acceptus concido cunctatio nulla ait coniuratio occaecati. Tondeo coaegresco coniecto.
Comment #1036
5/20/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1036" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1036" ); 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/1036"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1036"
)
comment = res.json() Response
{
"id": 1036,
"userId": 88,
"targetType": "post",
"targetId": 101,
"body": "Synagoga tardus defero decor. Accommodo arcesso alias acceptus concido cunctatio nulla ait coniuratio occaecati. Tondeo coaegresco coniecto.",
"isEdited": false,
"createdAt": "2025-05-20T19:53:00.932Z",
"updatedAt": "2025-05-20T19:53:00.932Z"
}