example-data.com

comments / #167

Comment #167

· 3/4/2025

Aufero ars patior possimus dedico adsidue cedo suscipio vulariter. Voluptas delectus triduana concido causa derelinquo. Ocer alo alveus brevis.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/167"
)
comment = res.json()
{
  "id": 167,
  "userId": 237,
  "targetType": "post",
  "targetId": 260,
  "body": "Aufero ars patior possimus dedico adsidue cedo suscipio vulariter. Voluptas delectus triduana concido causa derelinquo. Ocer alo alveus brevis.",
  "isEdited": false,
  "createdAt": "2025-03-04T07:04:09.151Z",
  "updatedAt": "2025-03-04T07:04:09.151Z"
}
Draftbit