example-data.com

comments / #229

Comment #229

· 9/25/2025

Tergum quae ater totus tumultus. Pauci audio eveniet vaco suggero aetas curatio. Crustulum cultura debilito somnus.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/229"
)
comment = res.json()
{
  "id": 229,
  "userId": 250,
  "targetType": "post",
  "targetId": 24,
  "body": "Tergum quae ater totus tumultus. Pauci audio eveniet vaco suggero aetas curatio. Crustulum cultura debilito somnus.",
  "isEdited": false,
  "createdAt": "2025-09-25T15:36:00.441Z",
  "updatedAt": "2025-09-25T15:36:00.441Z"
}
Draftbit