example-data.com

comments / #1016

Comment #1016

· 12/24/2024

Sui adeptio quisquam arbitro civis tantum carbo. Tabgo cubitum tricesimus conventus vilicus infit placeat.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/1016"
)
comment = res.json()
{
  "id": 1016,
  "userId": 197,
  "targetType": "post",
  "targetId": 387,
  "body": "Sui adeptio quisquam arbitro civis tantum carbo. Tabgo cubitum tricesimus conventus vilicus infit placeat.",
  "isEdited": false,
  "createdAt": "2024-12-24T07:32:06.778Z",
  "updatedAt": "2024-12-24T07:32:06.778Z"
}
Draftbit