example-data.com

comments / #144

Comment #144

· 3/20/2026

Voluntarius curriculum cicuta decimus absconditus unde utroque. Solum toties tredecim. Voluptas angustus curis aestus cerno. Avarus id quia victus apto abbas.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/144"
)
comment = res.json()
{
  "id": 144,
  "userId": 148,
  "targetType": "post",
  "targetId": 299,
  "body": "Voluntarius curriculum cicuta decimus absconditus unde utroque. Solum toties tredecim. Voluptas angustus curis aestus cerno. Avarus id quia victus apto abbas.",
  "isEdited": true,
  "createdAt": "2026-03-20T08:29:28.774Z",
  "updatedAt": "2026-03-27T13:04:51.821Z"
}
Draftbit