example-data.com

comments / #1089

Comment #1089

· 7/15/2024

Coepi dedecor quo advenio vulpes. Dedico sequi vigor alveus vinum varius supplanto theca articulus. Despecto eum alienus amissio quas depromo.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/1089"
)
comment = res.json()
{
  "id": 1089,
  "userId": 84,
  "targetType": "post",
  "targetId": 67,
  "body": "Coepi dedecor quo advenio vulpes. Dedico sequi vigor alveus vinum varius supplanto theca articulus. Despecto eum alienus amissio quas depromo.",
  "isEdited": false,
  "createdAt": "2024-07-15T11:09:45.269Z",
  "updatedAt": "2024-07-15T11:09:45.269Z"
}
Draftbit