Comment #694
· 9/24/2024
Angulus adaugeo dignissimos sufficio custodia cursim uterque volva trepide utique.
Overview
comments / #694
Angulus adaugeo dignissimos sufficio custodia cursim uterque volva trepide utique.
Comment #694
9/24/2024
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/694" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/694" ); 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/694"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/694"
)
comment = res.json() Response
{
"id": 694,
"userId": 148,
"targetType": "post",
"targetId": 79,
"body": "Angulus adaugeo dignissimos sufficio custodia cursim uterque volva trepide utique.",
"isEdited": false,
"createdAt": "2024-09-24T14:30:06.677Z",
"updatedAt": "2024-09-24T14:30:06.677Z"
}