example-data.com

comments / #148

Comment #148

· 5/19/2025

Decor comburo deficio accendo templum voluntarius complectus arbor. Talis accusator cubo. Adsidue vae thermae pauci dedico varietas carbo sufficio.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/148"
)
comment = res.json()
{
  "id": 148,
  "userId": 30,
  "targetType": "post",
  "targetId": 7,
  "body": "Decor comburo deficio accendo templum voluntarius complectus arbor. Talis accusator cubo. Adsidue vae thermae pauci dedico varietas carbo sufficio.",
  "isEdited": false,
  "createdAt": "2025-05-19T01:18:06.925Z",
  "updatedAt": "2025-05-19T01:18:06.925Z"
}
Draftbit