example-data.com

comments / #113

Comment #113

· 6/24/2025

Degusto cogito suppellex ambulo amplitudo deficio iusto delicate. Decimus aggredior voluptate suppono despecto synagoga tamdiu. Vitium corrigo aspicio cohibeo auditor.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/113"
)
comment = res.json()
{
  "id": 113,
  "userId": 51,
  "targetType": "post",
  "targetId": 105,
  "body": "Degusto cogito suppellex ambulo amplitudo deficio iusto delicate. Decimus aggredior voluptate suppono despecto synagoga tamdiu. Vitium corrigo aspicio cohibeo auditor.",
  "isEdited": false,
  "createdAt": "2025-06-24T11:03:31.018Z",
  "updatedAt": "2025-06-24T11:03:31.018Z"
}
Draftbit