example-data.com

comments / #111

Comment #111

· 8/9/2024

Totus aggredior audax alo tollo comprehendo ancilla. Agnosco viridis eos. Depulso collum conforto provident tabella ab utrimque trado conicio.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/111"
)
comment = res.json()
{
  "id": 111,
  "userId": 176,
  "targetType": "post",
  "targetId": 146,
  "body": "Totus aggredior audax alo tollo comprehendo ancilla. Agnosco viridis eos. Depulso collum conforto provident tabella ab utrimque trado conicio.",
  "isEdited": false,
  "createdAt": "2024-08-09T22:20:39.390Z",
  "updatedAt": "2024-08-09T22:20:39.390Z"
}
Draftbit