example-data.com

comments / #22

Comment #22

· 12/3/2025

Collum aptus cognatus vigilo depraedor cognomen terebro.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/22"
)
comment = res.json()
{
  "id": 22,
  "userId": 233,
  "targetType": "post",
  "targetId": 178,
  "body": "Collum aptus cognatus vigilo depraedor cognomen terebro.",
  "isEdited": false,
  "createdAt": "2025-12-03T06:44:16.253Z",
  "updatedAt": "2025-12-03T06:44:16.253Z"
}
Draftbit