Comment #262
· 12/13/2024
Atqui temporibus triduana attonbitus aurum derideo. Urbanus alo dedecor cogo confugo corrumpo vesica.
Overview
comments / #262
Atqui temporibus triduana attonbitus aurum derideo. Urbanus alo dedecor cogo confugo corrumpo vesica.
Comment #262
12/13/2024
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/262" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/262" ); 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/262"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/262"
)
comment = res.json() Response
{
"id": 262,
"userId": 47,
"targetType": "post",
"targetId": 367,
"body": "Atqui temporibus triduana attonbitus aurum derideo. Urbanus alo dedecor cogo confugo corrumpo vesica.",
"isEdited": false,
"createdAt": "2024-12-13T04:17:14.162Z",
"updatedAt": "2024-12-13T04:17:14.162Z"
}