example-data.com

comments / #212

Comment #212

· 2/1/2025

Subiungo arguo aliqua caute corrupti abundans adhaero combibo ars expedita. Coepi arbitro peior vinculum error comedo.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/212"
)
comment = res.json()
{
  "id": 212,
  "userId": 191,
  "targetType": "post",
  "targetId": 285,
  "body": "Subiungo arguo aliqua caute corrupti abundans adhaero combibo ars expedita. Coepi arbitro peior vinculum error comedo.",
  "isEdited": false,
  "createdAt": "2025-02-01T07:34:26.238Z",
  "updatedAt": "2025-02-01T07:34:26.238Z"
}
Draftbit