example-data.com

comments / #44

Comment #44

· 11/25/2025

Copiose antiquus desidero deludo deporto denego aufero. Thermae vacuus patria voluptas cornu adulatio patruus. Ascit arca succurro attollo teres copiose adicio ago. Cognatus ars crudelis ago cubicularis ventito.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/44"
)
comment = res.json()
{
  "id": 44,
  "userId": 115,
  "targetType": "post",
  "targetId": 207,
  "body": "Copiose antiquus desidero deludo deporto denego aufero. Thermae vacuus patria voluptas cornu adulatio patruus. Ascit arca succurro attollo teres copiose adicio ago. Cognatus ars crudelis ago cubicularis ventito.",
  "isEdited": false,
  "createdAt": "2025-11-25T17:52:59.367Z",
  "updatedAt": "2025-11-25T17:52:59.367Z"
}
Draftbit