example-data.com

comments / #168

Comment #168

· 12/29/2025

Conduco tabella antepono verto comptus in atrox absconditus cuppedia. Cunae tenus doloribus aestivus copia vinculum ipsam ante adimpleo. Arca valens volutabrum viscus animi victus ullus cetera.

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/comments/168" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/comments/168"
);
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/168"
);
const comment = (await res.json()) as Comment;
import requests

res = requests.get(
    "https://example-data.com/api/v1/comments/168"
)
comment = res.json()
{
  "id": 168,
  "userId": 134,
  "targetType": "post",
  "targetId": 73,
  "body": "Conduco tabella antepono verto comptus in atrox absconditus cuppedia. Cunae tenus doloribus aestivus copia vinculum ipsam ante adimpleo. Arca valens volutabrum viscus animi victus ullus cetera.",
  "isEdited": false,
  "createdAt": "2025-12-29T18:45:57.374Z",
  "updatedAt": "2025-12-29T18:45:57.374Z"
}
Draftbit