example-data.com

comments / #185

Comment #185

· 2/3/2025

Bibo claudeo eos conatus sortitus vesco abscido. Libero subseco contigo placeat tero.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/185"
)
comment = res.json()
{
  "id": 185,
  "userId": 181,
  "targetType": "post",
  "targetId": 40,
  "body": "Bibo claudeo eos conatus sortitus vesco abscido. Libero subseco contigo placeat tero.",
  "isEdited": false,
  "createdAt": "2025-02-03T18:05:42.416Z",
  "updatedAt": "2025-02-03T18:05:42.416Z"
}
Draftbit