example-data.com

comments / #640

Comment #640

· 12/5/2025

Caritas averto theatrum cuppedia calamitas cicuta molestias demoror deleo. Canto desolo cavus arx admitto vicinus laborum tonsor deduco. Vitae aestus corona ventosus.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/640"
)
comment = res.json()
{
  "id": 640,
  "userId": 86,
  "targetType": "post",
  "targetId": 80,
  "body": "Caritas averto theatrum cuppedia calamitas cicuta molestias demoror deleo. Canto desolo cavus arx admitto vicinus laborum tonsor deduco. Vitae aestus corona ventosus.",
  "isEdited": false,
  "createdAt": "2025-12-05T08:11:16.584Z",
  "updatedAt": "2025-12-05T08:11:16.584Z"
}
Draftbit