example-data.com

comments / #1

Comment #1

· 4/21/2026

Venustas addo velut ter bos auditor carcer comitatus spero. Bonus crustulum appositus odit velut certus eos vaco deleniti video.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/1"
)
comment = res.json()
{
  "id": 1,
  "userId": 25,
  "targetType": "post",
  "targetId": 285,
  "body": "Venustas addo velut ter bos auditor carcer comitatus spero. Bonus crustulum appositus odit velut certus eos vaco deleniti video.",
  "isEdited": false,
  "createdAt": "2026-04-21T04:58:34.589Z",
  "updatedAt": "2026-04-21T04:58:34.589Z"
}
Draftbit