example-data.com

comments / #183

Comment #183

· 8/2/2024

Velociter altus attero sponte utrimque abstergo tener. Cunae sortitus temeritas sponte quas cupiditate damnatio cognatus harum.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/183"
)
comment = res.json()
{
  "id": 183,
  "userId": 101,
  "targetType": "post",
  "targetId": 41,
  "body": "Velociter altus attero sponte utrimque abstergo tener. Cunae sortitus temeritas sponte quas cupiditate damnatio cognatus harum.",
  "isEdited": false,
  "createdAt": "2024-08-02T07:57:59.948Z",
  "updatedAt": "2024-08-02T07:57:59.948Z"
}
Draftbit