Comment #319
· 9/30/2025
Adsuesco amplitudo accedo degusto truculenter enim certus volo. Succedo temptatio volo attonbitus decimus. Crapula summisse tracto unus.
Overview
comments / #319
Adsuesco amplitudo accedo degusto truculenter enim certus volo. Succedo temptatio volo attonbitus decimus. Crapula summisse tracto unus.
Comment #319
9/30/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/319" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/319" ); 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/319"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/319"
)
comment = res.json() Response
{
"id": 319,
"userId": 10,
"targetType": "post",
"targetId": 219,
"body": "Adsuesco amplitudo accedo degusto truculenter enim certus volo. Succedo temptatio volo attonbitus decimus. Crapula summisse tracto unus.",
"isEdited": false,
"createdAt": "2025-09-30T00:16:07.128Z",
"updatedAt": "2025-09-30T00:16:07.128Z"
}