Comment #759
· 4/4/2025
Facere creta ipsam. Cubo absconditus surgo. Soleo calculus paulatim velociter undique pauci defendo. Magni convoco valde soleo aliquam bellicus pecus virgo.
Overview
comments / #759
Facere creta ipsam. Cubo absconditus surgo. Soleo calculus paulatim velociter undique pauci defendo. Magni convoco valde soleo aliquam bellicus pecus virgo.
Comment #759
4/4/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/759" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/759" ); 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/759"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/759"
)
comment = res.json() Response
{
"id": 759,
"userId": 173,
"targetType": "post",
"targetId": 45,
"body": "Facere creta ipsam. Cubo absconditus surgo. Soleo calculus paulatim velociter undique pauci defendo. Magni convoco valde soleo aliquam bellicus pecus virgo.",
"isEdited": false,
"createdAt": "2025-04-04T20:46:10.228Z",
"updatedAt": "2025-04-04T20:46:10.228Z"
}