example-data.com

comments / #171

Comment #171

· 5/20/2025

Trepide video voluntarius nam tego cibo arcus usus abduco sulum. Demens iste baiulus sapiente tabernus quasi cunctatio condico laboriosam.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/comments/171"
)
comment = res.json()
{
  "id": 171,
  "userId": 83,
  "targetType": "post",
  "targetId": 49,
  "body": "Trepide video voluntarius nam tego cibo arcus usus abduco sulum. Demens iste baiulus sapiente tabernus quasi cunctatio condico laboriosam.",
  "isEdited": false,
  "createdAt": "2025-05-20T03:58:56.370Z",
  "updatedAt": "2025-05-20T03:58:56.370Z"
}
Draftbit