Comment #959
· 6/22/2025
Texo charisma apto dens victoria tero ater.
Overview
comments / #959
Texo charisma apto dens victoria tero ater.
Comment #959
6/22/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/959" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/959" ); 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/959"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/959"
)
comment = res.json() Response
{
"id": 959,
"userId": 7,
"targetType": "post",
"targetId": 64,
"body": "Texo charisma apto dens victoria tero ater.",
"isEdited": true,
"createdAt": "2025-06-22T18:25:57.757Z",
"updatedAt": "2026-02-03T09:55:15.406Z"
}