example-data.com
Menu
Browse docs and collections

Overview

comments / #76

Comment #76

· 10/9/2025

Ullam expedita cognomen adulatio quos summa tabernus magni textus collum. Sequi currus denego amitto. Delibero via votum cena vicinus dedecor deludo. Voluptates sollicito aeneus.

Component variants

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/comments/76"
);
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/76"
);
const comment = (await res.json()) as Comment;

Python example

import requests

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

Response

{
  "id": 76,
  "userId": 78,
  "targetType": "post",
  "targetId": 171,
  "body": "Ullam expedita cognomen adulatio quos summa tabernus magni textus collum. Sequi currus denego amitto. Delibero via votum cena vicinus dedecor deludo. Voluptates sollicito aeneus.",
  "isEdited": false,
  "createdAt": "2025-10-09T04:37:46.762Z",
  "updatedAt": "2025-10-09T04:37:46.762Z"
}