example-data.com
Menu
Browse docs and collections

Overview

comments / #735

Comment #735

· 12/5/2025

Suggero callide at magni tres pectus turbo solvo voveo. Vomer cura addo arcus. Coaegresco audeo decumbo totam abeo delinquo voco sum vehemens triduana. Arceo cognatus cilicium abstergo tamen voluptatibus aduro.

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/comments/735" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/comments/735"
);
const comment = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/comments.d.ts https://example-data.com/types/comments.d.ts
import type { Comment } from "./types/comments";

const res = await fetch(
  "https://example-data.com/api/v1/comments/735"
);
const comment = (await res.json()) as Comment;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/comments/735"
)
comment = res.json()

Response

{
  "id": 735,
  "userId": 94,
  "targetType": "post",
  "targetId": 288,
  "body": "Suggero callide at magni tres pectus turbo solvo voveo. Vomer cura addo arcus. Coaegresco audeo decumbo totam abeo delinquo voco sum vehemens triduana. Arceo cognatus cilicium abstergo tamen voluptatibus aduro.",
  "isEdited": false,
  "createdAt": "2025-12-05T10:53:57.019Z",
  "updatedAt": "2025-12-05T10:53:57.019Z"
}