example-data.com

comments / #89

Comment #89

· 6/7/2025

Vinco vester attonbitus adsum ars vobis adipisci valetudo cito. Degusto appositus cado agnitio compono eaque speculum utique inventore titulus.

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/comments/89" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/comments/89"
);
const comment = await res.json();
import type { Comment } from "https://example-data.com/types/comments.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/comments/89"
);
const comment = (await res.json()) as Comment;
import requests

res = requests.get(
    "https://example-data.com/api/v1/comments/89"
)
comment = res.json()
{
  "id": 89,
  "userId": 237,
  "targetType": "post",
  "targetId": 255,
  "body": "Vinco vester attonbitus adsum ars vobis adipisci valetudo cito. Degusto appositus cado agnitio compono eaque speculum utique inventore titulus.",
  "isEdited": false,
  "createdAt": "2025-06-07T11:43:54.286Z",
  "updatedAt": "2025-06-07T11:43:54.286Z"
}
Draftbit