example-data.com

comments / #603

Comment #603

· 5/17/2026

Viridis solum cohaero casso talus. Corrumpo agnosco celo angustus tres distinctio denique.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/603"
)
comment = res.json()
{
  "id": 603,
  "userId": 174,
  "targetType": "post",
  "targetId": 467,
  "body": "Viridis solum cohaero casso talus. Corrumpo agnosco celo angustus tres distinctio denique.",
  "isEdited": true,
  "createdAt": "2026-05-17T02:03:53.133Z",
  "updatedAt": "2026-05-18T13:56:04.975Z"
}
Draftbit