example-data.com

comments / #417

Comment #417

· 2/8/2025

Non asporto coepi velociter. Vero surgo asperiores pecto bis. Temporibus utrum ver viriliter ex cometes veritatis decerno delectus.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/417"
)
comment = res.json()
{
  "id": 417,
  "userId": 32,
  "targetType": "post",
  "targetId": 319,
  "body": "Non asporto coepi velociter. Vero surgo asperiores pecto bis. Temporibus utrum ver viriliter ex cometes veritatis decerno delectus.",
  "isEdited": false,
  "createdAt": "2025-02-08T14:24:49.227Z",
  "updatedAt": "2025-02-08T14:24:49.227Z"
}
Draftbit