example-data.com

comments / #2

Comment #2

· 9/26/2025

Facilis considero deleo talus vicinus tui sint tamdiu praesentium. Canis calamitas barba cedo apud.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/2"
)
comment = res.json()
{
  "id": 2,
  "userId": 101,
  "targetType": "post",
  "targetId": 497,
  "body": "Facilis considero deleo talus vicinus tui sint tamdiu praesentium. Canis calamitas barba cedo apud.",
  "isEdited": false,
  "createdAt": "2025-09-26T04:52:12.858Z",
  "updatedAt": "2025-09-26T04:52:12.858Z"
}
Draftbit