example-data.com

comments / #1467

Comment #1467

· 3/18/2026

Ulterius summisse utor degenero. Cohors cursus vere unde aliquam carus quam viriliter iste thesaurus.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/1467"
)
comment = res.json()
{
  "id": 1467,
  "userId": 101,
  "targetType": "post",
  "targetId": 38,
  "body": "Ulterius summisse utor degenero. Cohors cursus vere unde aliquam carus quam viriliter iste thesaurus.",
  "isEdited": false,
  "createdAt": "2026-03-18T22:18:29.600Z",
  "updatedAt": "2026-03-18T22:18:29.600Z"
}
Draftbit