example-data.com

comments / #115

Comment #115

· 2/7/2025

Texo capillus suggero alo stips tempora maxime amo vae. Thymbra temporibus abutor nemo cauda amplitudo subito talus territo. Claustrum argumentum curriculum ab tero cado conatus teneo. Aranea hic vos caries totidem.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/115"
)
comment = res.json()
{
  "id": 115,
  "userId": 39,
  "targetType": "post",
  "targetId": 109,
  "body": "Texo capillus suggero alo stips tempora maxime amo vae. Thymbra temporibus abutor nemo cauda amplitudo subito talus territo. Claustrum argumentum curriculum ab tero cado conatus teneo. Aranea hic vos caries totidem.",
  "isEdited": false,
  "createdAt": "2025-02-07T04:29:51.386Z",
  "updatedAt": "2025-02-07T04:29:51.386Z"
}
Draftbit