example-data.com

comments / #65

Comment #65

· 12/23/2024

Tenetur appono uberrime demergo verbera enim quia. Theatrum debeo dedecor perspiciatis viduo tollo caveo. Pecto inventore deporto porro uxor arbitro subnecto cura.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/65"
)
comment = res.json()
{
  "id": 65,
  "userId": 56,
  "targetType": "post",
  "targetId": 232,
  "body": "Tenetur appono uberrime demergo verbera enim quia. Theatrum debeo dedecor perspiciatis viduo tollo caveo. Pecto inventore deporto porro uxor arbitro subnecto cura.",
  "isEdited": false,
  "createdAt": "2024-12-23T10:13:16.964Z",
  "updatedAt": "2024-12-23T10:13:16.964Z"
}
Draftbit