example-data.com

comments / #180

Comment #180

· 11/23/2025

Animadverto vae creo pecto trepide tunc suscipit arma. Caelum suffragium coma tenuis terga cunctatio conitor cur defetiscor constans.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/180"
)
comment = res.json()
{
  "id": 180,
  "userId": 36,
  "targetType": "post",
  "targetId": 446,
  "body": "Animadverto vae creo pecto trepide tunc suscipit arma. Caelum suffragium coma tenuis terga cunctatio conitor cur defetiscor constans.",
  "isEdited": true,
  "createdAt": "2025-11-23T08:11:27.813Z",
  "updatedAt": "2026-02-26T11:33:05.886Z"
}
Draftbit