example-data.com

comments / #233

Comment #233

· 12/7/2025

Arbor creptio vae super stips complectus tutis ager consectetur. Defessus cado laudantium temperantia eius confugo paens possimus quos ultio.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/233"
)
comment = res.json()
{
  "id": 233,
  "userId": 24,
  "targetType": "post",
  "targetId": 321,
  "body": "Arbor creptio vae super stips complectus tutis ager consectetur. Defessus cado laudantium temperantia eius confugo paens possimus quos ultio.",
  "isEdited": false,
  "createdAt": "2025-12-07T12:46:32.580Z",
  "updatedAt": "2025-12-07T12:46:32.580Z"
}
Draftbit