example-data.com

comments / #54

Comment #54

· 4/12/2025

Turba spes textor stipes vinitor alius cornu conculco conscendo. Sordeo depromo varietas caelestis. Tego corrumpo cedo adipiscor. Utique cauda careo.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/54"
)
comment = res.json()
{
  "id": 54,
  "userId": 106,
  "targetType": "post",
  "targetId": 109,
  "body": "Turba spes textor stipes vinitor alius cornu conculco conscendo. Sordeo depromo varietas caelestis. Tego corrumpo cedo adipiscor. Utique cauda careo.",
  "isEdited": false,
  "createdAt": "2025-04-12T20:31:50.477Z",
  "updatedAt": "2025-04-12T20:31:50.477Z"
}
Draftbit