Comment #48
· 8/21/2025
Angelus video adipiscor conicio confido solitudo sufficio vestigium delibero vado. Auctus abundans vilis cetera vinitor angulus.
Overview
comments / #48
Angelus video adipiscor conicio confido solitudo sufficio vestigium delibero vado. Auctus abundans vilis cetera vinitor angulus.
Comment #48
8/21/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/48" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/48" ); 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/48"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/48"
)
comment = res.json() Response
{
"id": 48,
"userId": 5,
"targetType": "post",
"targetId": 421,
"body": "Angelus video adipiscor conicio confido solitudo sufficio vestigium delibero vado. Auctus abundans vilis cetera vinitor angulus.",
"isEdited": false,
"createdAt": "2025-08-21T05:57:46.455Z",
"updatedAt": "2025-08-21T05:57:46.455Z"
}