example-data.com

comments / #124

Comment #124

· 3/21/2025

Demens amo inventore agnitio confugo. Crur vulpes cupio. Soleo vociferor conspergo. Venia corpus asporto acerbitas acceptus aut conicio articulus vix coerceo.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/124"
)
comment = res.json()
{
  "id": 124,
  "userId": 140,
  "targetType": "post",
  "targetId": 441,
  "body": "Demens amo inventore agnitio confugo. Crur vulpes cupio. Soleo vociferor conspergo. Venia corpus asporto acerbitas acceptus aut conicio articulus vix coerceo.",
  "isEdited": false,
  "createdAt": "2025-03-21T14:25:56.962Z",
  "updatedAt": "2025-03-21T14:25:56.962Z"
}
Draftbit