example-data.com

comments / #218

Comment #218

· 9/9/2025

Admoneo beneficium tyrannus velum cultura accusator vivo. Spiritus sumo calamitas taedium pax alii vereor vitae video.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/218"
)
comment = res.json()
{
  "id": 218,
  "userId": 188,
  "targetType": "post",
  "targetId": 136,
  "body": "Admoneo beneficium tyrannus velum cultura accusator vivo. Spiritus sumo calamitas taedium pax alii vereor vitae video.",
  "isEdited": false,
  "createdAt": "2025-09-09T06:37:25.513Z",
  "updatedAt": "2025-09-09T06:37:25.513Z"
}
Draftbit