Comment #938
· 9/28/2025
Curiositas basium aestivus unde ambitus utroque denuo.
Overview
comments / #938
Curiositas basium aestivus unde ambitus utroque denuo.
Comment #938
9/28/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/938" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/938" ); 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/938"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/938"
)
comment = res.json() Response
{
"id": 938,
"userId": 160,
"targetType": "post",
"targetId": 335,
"body": "Curiositas basium aestivus unde ambitus utroque denuo.",
"isEdited": false,
"createdAt": "2025-09-28T13:26:05.084Z",
"updatedAt": "2025-09-28T13:26:05.084Z"
}