example-data.com

comments / #62

Comment #62

· 5/3/2025

Teneo sordeo calculus.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/62"
)
comment = res.json()
{
  "id": 62,
  "userId": 6,
  "targetType": "post",
  "targetId": 27,
  "body": "Teneo sordeo calculus.",
  "isEdited": false,
  "createdAt": "2025-05-03T08:20:09.854Z",
  "updatedAt": "2025-05-03T08:20:09.854Z"
}
Draftbit