example-data.com

comments / #131

Comment #131

· 1/30/2026

Succurro cotidie absens solium error audacia crebro ratione clamo arguo. Nesciunt degusto facere id cunctatio.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/131"
)
comment = res.json()
{
  "id": 131,
  "userId": 190,
  "targetType": "post",
  "targetId": 110,
  "body": "Succurro cotidie absens solium error audacia crebro ratione clamo arguo. Nesciunt degusto facere id cunctatio.",
  "isEdited": false,
  "createdAt": "2026-01-30T05:05:57.470Z",
  "updatedAt": "2026-01-30T05:05:57.470Z"
}
Draftbit