Comment #948
· 4/4/2025
Facere cohaero addo vespillo pauci cohors summopere. Acidus ocer venia sopor audacia. Tot pectus crepusculum consequatur strenuus vigor arto.
Overview
comments / #948
Facere cohaero addo vespillo pauci cohors summopere. Acidus ocer venia sopor audacia. Tot pectus crepusculum consequatur strenuus vigor arto.
Comment #948
4/4/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/948" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/948" ); 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/948"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/948"
)
comment = res.json() Response
{
"id": 948,
"userId": 19,
"targetType": "post",
"targetId": 17,
"body": "Facere cohaero addo vespillo pauci cohors summopere. Acidus ocer venia sopor audacia. Tot pectus crepusculum consequatur strenuus vigor arto.",
"isEdited": false,
"createdAt": "2025-04-04T19:33:46.235Z",
"updatedAt": "2025-04-04T19:33:46.235Z"
}