example-data.com

comments / #50

Comment #50

· 12/23/2024

Certe arma temeritas ancilla. Universe magni vos et curatio corporis.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/50"
)
comment = res.json()
{
  "id": 50,
  "userId": 46,
  "targetType": "post",
  "targetId": 34,
  "body": "Certe arma temeritas ancilla. Universe magni vos et curatio corporis.",
  "isEdited": false,
  "createdAt": "2024-12-23T15:21:48.009Z",
  "updatedAt": "2024-12-23T15:21:48.009Z"
}
Draftbit