example-data.com

comments / #112

Comment #112

· 7/30/2024

Sumo terga abutor varius voluntarius taceo. Vel dens administratio alveus tabula vulgivagus.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/112"
)
comment = res.json()
{
  "id": 112,
  "userId": 34,
  "targetType": "post",
  "targetId": 212,
  "body": "Sumo terga abutor varius voluntarius taceo. Vel dens administratio alveus tabula vulgivagus.",
  "isEdited": false,
  "createdAt": "2024-07-30T03:14:25.783Z",
  "updatedAt": "2024-07-30T03:14:25.783Z"
}
Draftbit