example-data.com

comments / #24

Comment #24

· 3/23/2026

Odit adsum harum clementia deleniti illum tui. Adicio sapiente bellum adeo utor apparatus decipio talio cubo.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/24"
)
comment = res.json()
{
  "id": 24,
  "userId": 238,
  "targetType": "post",
  "targetId": 308,
  "body": "Odit adsum harum clementia deleniti illum tui. Adicio sapiente bellum adeo utor apparatus decipio talio cubo.",
  "isEdited": false,
  "createdAt": "2026-03-23T17:27:49.564Z",
  "updatedAt": "2026-03-23T17:27:49.564Z"
}
Draftbit