Comment #931
· 6/7/2025
Demens odio verto confugo in desino quasi.
Overview
comments / #931
Demens odio verto confugo in desino quasi.
Comment #931
6/7/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/931" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/931" ); 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/931"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/931"
)
comment = res.json() Response
{
"id": 931,
"userId": 121,
"targetType": "post",
"targetId": 32,
"body": "Demens odio verto confugo in desino quasi.",
"isEdited": true,
"createdAt": "2025-06-07T19:05:25.263Z",
"updatedAt": "2025-11-24T03:59:39.146Z"
}