example-data.com

comments / #457

Comment #457

· 10/15/2025

Candidus temeritas velit comparo aeternus rerum ara vulnus pel crur. Cubo eveniet patruus.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/457"
)
comment = res.json()
{
  "id": 457,
  "userId": 30,
  "targetType": "post",
  "targetId": 2,
  "body": "Candidus temeritas velit comparo aeternus rerum ara vulnus pel crur. Cubo eveniet patruus.",
  "isEdited": false,
  "createdAt": "2025-10-15T06:13:07.878Z",
  "updatedAt": "2025-10-15T06:13:07.878Z"
}
Draftbit