example-data.com

comments / #23

Comment #23

· 12/31/2025

Decerno asporto libero stipes antepono consequuntur caput strues. Clibanus vapulus degenero cariosus uxor eligendi ea voluptate. Recusandae corpus modi desolo pauci voluptatem.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/23"
)
comment = res.json()
{
  "id": 23,
  "userId": 147,
  "targetType": "post",
  "targetId": 301,
  "body": "Decerno asporto libero stipes antepono consequuntur caput strues. Clibanus vapulus degenero cariosus uxor eligendi ea voluptate. Recusandae corpus modi desolo pauci voluptatem.",
  "isEdited": false,
  "createdAt": "2025-12-31T14:59:32.383Z",
  "updatedAt": "2025-12-31T14:59:32.383Z"
}
Draftbit