example-data.com

comments / #86

Comment #86

· 11/9/2024

Talis desolo solutio carbo.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/86"
)
comment = res.json()
{
  "id": 86,
  "userId": 8,
  "targetType": "post",
  "targetId": 235,
  "body": "Talis desolo solutio carbo.",
  "isEdited": false,
  "createdAt": "2024-11-09T22:59:40.122Z",
  "updatedAt": "2024-11-09T22:59:40.122Z"
}
Draftbit