example-data.com

comments / #64

Comment #64

· 7/26/2025

Tripudio excepturi cohors. Deporto defendo corrumpo sed crustulum. Solium utrum vorago cursus tardus curo aestus spero.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/64"
)
comment = res.json()
{
  "id": 64,
  "userId": 146,
  "targetType": "post",
  "targetId": 119,
  "body": "Tripudio excepturi cohors. Deporto defendo corrumpo sed crustulum. Solium utrum vorago cursus tardus curo aestus spero.",
  "isEdited": true,
  "createdAt": "2025-07-26T18:30:42.454Z",
  "updatedAt": "2025-08-11T23:40:45.520Z"
}
Draftbit