example-data.com

comments / #73

Comment #73

· 7/6/2025

Absconditus validus studio aperte taedium quod advenio. Aequus quibusdam nobis communis depono crustulum comptus teres claustrum officiis.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/73"
)
comment = res.json()
{
  "id": 73,
  "userId": 69,
  "targetType": "post",
  "targetId": 201,
  "body": "Absconditus validus studio aperte taedium quod advenio. Aequus quibusdam nobis communis depono crustulum comptus teres claustrum officiis.",
  "isEdited": false,
  "createdAt": "2025-07-06T13:59:41.135Z",
  "updatedAt": "2025-07-06T13:59:41.135Z"
}
Draftbit