example-data.com

comments / #199

Comment #199

· 8/8/2024

Conor carus cado confido crur arcus annus velit ver illum. Tubineus cavus tubineus correptius ancilla conventus dolore vorago.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/199"
)
comment = res.json()
{
  "id": 199,
  "userId": 56,
  "targetType": "post",
  "targetId": 86,
  "body": "Conor carus cado confido crur arcus annus velit ver illum. Tubineus cavus tubineus correptius ancilla conventus dolore vorago.",
  "isEdited": false,
  "createdAt": "2024-08-08T09:37:57.571Z",
  "updatedAt": "2024-08-08T09:37:57.571Z"
}
Draftbit