example-data.com

comments / #194

Comment #194

· 12/22/2025

Tracto ipsam corrumpo eveniet crustulum auditor comes thymbra. Corrupti vis mollitia cohaero aufero. Omnis virga advenio numquam.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/194"
)
comment = res.json()
{
  "id": 194,
  "userId": 184,
  "targetType": "post",
  "targetId": 28,
  "body": "Tracto ipsam corrumpo eveniet crustulum auditor comes thymbra. Corrupti vis mollitia cohaero aufero. Omnis virga advenio numquam.",
  "isEdited": false,
  "createdAt": "2025-12-22T22:55:57.421Z",
  "updatedAt": "2025-12-22T22:55:57.421Z"
}
Draftbit