example-data.com

comments / #41

Comment #41

· 6/12/2025

Consectetur cum aggero canis. A amor deleo clamo inflammatio nihil. Approbo sto cognatus accommodo suscipio. Iusto tres inflammatio crudelis quas.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/41"
)
comment = res.json()
{
  "id": 41,
  "userId": 124,
  "targetType": "post",
  "targetId": 297,
  "body": "Consectetur cum aggero canis. A amor deleo clamo inflammatio nihil. Approbo sto cognatus accommodo suscipio. Iusto tres inflammatio crudelis quas.",
  "isEdited": false,
  "createdAt": "2025-06-12T13:20:27.254Z",
  "updatedAt": "2025-06-12T13:20:27.254Z"
}
Draftbit