Comment #258
· 2/26/2025
Comes vir pecus cimentarius verus tego charisma timidus tredecim. Nemo valetudo clarus sequi statim civitas.
Overview
comments / #258
Comes vir pecus cimentarius verus tego charisma timidus tredecim. Nemo valetudo clarus sequi statim civitas.
Comment #258
2/26/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/258" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/258" ); 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/258"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/258"
)
comment = res.json() Response
{
"id": 258,
"userId": 208,
"targetType": "post",
"targetId": 234,
"body": "Comes vir pecus cimentarius verus tego charisma timidus tredecim. Nemo valetudo clarus sequi statim civitas.",
"isEdited": false,
"createdAt": "2025-02-26T11:31:47.148Z",
"updatedAt": "2025-02-26T11:31:47.148Z"
}