Comment #1128
· 1/1/2025
Sordeo cognatus sapiente textilis. Conforto caste benigne voluptate accommodo contego triduana cuius comes corrigo. Desolo verbum usque.
Overview
comments / #1128
Sordeo cognatus sapiente textilis. Conforto caste benigne voluptate accommodo contego triduana cuius comes corrigo. Desolo verbum usque.
Comment #1128
1/1/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1128" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1128" ); 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/1128"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1128"
)
comment = res.json() Response
{
"id": 1128,
"userId": 173,
"targetType": "post",
"targetId": 415,
"body": "Sordeo cognatus sapiente textilis. Conforto caste benigne voluptate accommodo contego triduana cuius comes corrigo. Desolo verbum usque.",
"isEdited": false,
"createdAt": "2025-01-01T19:57:52.617Z",
"updatedAt": "2025-01-01T19:57:52.617Z"
}