example-data.com

comments / #59

Comment #59

· 5/30/2024

Aeneus vehemens desipio cervus arbitro abbas crur. Architecto dapifer subseco venustas solum hic carmen considero textor adulescens. Defero defungo iure quam cura creta ulciscor tam argumentum damnatio. Placeat antepono spiritus benevolentia tactus.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/59"
)
comment = res.json()
{
  "id": 59,
  "userId": 3,
  "targetType": "post",
  "targetId": 313,
  "body": "Aeneus vehemens desipio cervus arbitro abbas crur. Architecto dapifer subseco venustas solum hic carmen considero textor adulescens. Defero defungo iure quam cura creta ulciscor tam argumentum damnatio. Placeat antepono spiritus benevolentia tactus.",
  "isEdited": false,
  "createdAt": "2024-05-30T21:24:47.890Z",
  "updatedAt": "2024-05-30T21:24:47.890Z"
}
Draftbit