example-data.com

comments / #709

Comment #709

· 6/11/2024

Bos conqueror quae voluptatum. Bardus admoneo thymum bis usitas aspernatur absorbeo tenus.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/709"
)
comment = res.json()
{
  "id": 709,
  "userId": 76,
  "targetType": "post",
  "targetId": 110,
  "body": "Bos conqueror quae voluptatum. Bardus admoneo thymum bis usitas aspernatur absorbeo tenus.",
  "isEdited": false,
  "createdAt": "2024-06-11T14:02:48.459Z",
  "updatedAt": "2024-06-11T14:02:48.459Z"
}
Draftbit