example-data.com

comments / #118

Comment #118

· 7/3/2025

Sint vitae civis custodia adipiscor uredo argumentum cimentarius. Caveo cauda a cervus patior adopto alo capto.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/118"
)
comment = res.json()
{
  "id": 118,
  "userId": 226,
  "targetType": "post",
  "targetId": 12,
  "body": "Sint vitae civis custodia adipiscor uredo argumentum cimentarius. Caveo cauda a cervus patior adopto alo capto.",
  "isEdited": false,
  "createdAt": "2025-07-03T02:42:55.736Z",
  "updatedAt": "2025-07-03T02:42:55.736Z"
}
Draftbit