example-data.com

comments / #107

Comment #107

· 1/28/2026

Apud admitto versus. Tabernus cresco molestiae aqua.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/107"
)
comment = res.json()
{
  "id": 107,
  "userId": 111,
  "targetType": "post",
  "targetId": 295,
  "body": "Apud admitto versus. Tabernus cresco molestiae aqua.",
  "isEdited": false,
  "createdAt": "2026-01-28T16:58:49.759Z",
  "updatedAt": "2026-01-28T16:58:49.759Z"
}
Draftbit