example-data.com

comments / #159

Comment #159

· 11/28/2024

Angulus suffoco aurum dens velociter nulla curto alveus tam.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/159"
)
comment = res.json()
{
  "id": 159,
  "userId": 99,
  "targetType": "post",
  "targetId": 65,
  "body": "Angulus suffoco aurum dens velociter nulla curto alveus tam.",
  "isEdited": false,
  "createdAt": "2024-11-28T07:39:51.753Z",
  "updatedAt": "2024-11-28T07:39:51.753Z"
}
Draftbit