example-data.com

comments / #74

Comment #74

· 6/11/2025

Aeneus sint adaugeo.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/74"
)
comment = res.json()
{
  "id": 74,
  "userId": 215,
  "targetType": "post",
  "targetId": 371,
  "body": "Aeneus sint adaugeo.",
  "isEdited": false,
  "createdAt": "2025-06-11T00:33:28.441Z",
  "updatedAt": "2025-06-11T00:33:28.441Z"
}
Draftbit