example-data.com

comments / #125

Comment #125

· 12/16/2025

Ipsam vos turba valens. Vulgaris crastinus comis.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/125"
)
comment = res.json()
{
  "id": 125,
  "userId": 76,
  "targetType": "post",
  "targetId": 302,
  "body": "Ipsam vos turba valens. Vulgaris crastinus comis.",
  "isEdited": true,
  "createdAt": "2025-12-16T07:31:17.102Z",
  "updatedAt": "2025-12-26T11:12:35.239Z"
}
Draftbit