example-data.com
Menu
Browse docs and collections

Overview

comments / #1224

Comment #1224

· 10/17/2025

Vivo capitulus cauda textilis venia curvo. Aetas culpa derelinquo traho considero vulpes vere.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 1224,
  "userId": 103,
  "targetType": "post",
  "targetId": 455,
  "body": "Vivo capitulus cauda textilis venia curvo. Aetas culpa derelinquo traho considero vulpes vere.",
  "isEdited": true,
  "createdAt": "2025-10-17T00:57:30.741Z",
  "updatedAt": "2025-10-20T12:59:53.240Z"
}