example-data.com

comments / #644

Comment #644

· 1/9/2026

Canto verus quis appono. Cena canonicus spectaculum aeger absens alveus. Occaecati theatrum approbo calco reprehenderit vicissitudo baiulus stillicidium spes viduo.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/644"
)
comment = res.json()
{
  "id": 644,
  "userId": 10,
  "targetType": "post",
  "targetId": 382,
  "body": "Canto verus quis appono. Cena canonicus spectaculum aeger absens alveus. Occaecati theatrum approbo calco reprehenderit vicissitudo baiulus stillicidium spes viduo.",
  "isEdited": false,
  "createdAt": "2026-01-09T08:55:14.129Z",
  "updatedAt": "2026-01-09T08:55:14.129Z"
}
Draftbit