example-data.com

comments / #63

Comment #63

· 1/17/2026

Recusandae minus cotidie cur victus. Aestus textilis voluptas adsidue amoveo tero. Cunctatio arma admoneo thymbra.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/63"
)
comment = res.json()
{
  "id": 63,
  "userId": 151,
  "targetType": "post",
  "targetId": 78,
  "body": "Recusandae minus cotidie cur victus. Aestus textilis voluptas adsidue amoveo tero. Cunctatio arma admoneo thymbra.",
  "isEdited": true,
  "createdAt": "2026-01-17T20:23:19.901Z",
  "updatedAt": "2026-02-08T15:43:37.261Z"
}
Draftbit