example-data.com
Menu
Browse docs and collections

Overview

comments / #1419

Comment #1419

· 2/14/2026

Valetudo triumphus delectatio curis cubicularis vapulus carpo accendo soluta culpo. Abbas arceo thermae conscendo. Vindico autus corrupti cultellus tres debeo caelum cubitum varius.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 1419,
  "userId": 201,
  "targetType": "post",
  "targetId": 8,
  "body": "Valetudo triumphus delectatio curis cubicularis vapulus carpo accendo soluta culpo. Abbas arceo thermae conscendo. Vindico autus corrupti cultellus tres debeo caelum cubitum varius.",
  "isEdited": true,
  "createdAt": "2026-02-14T15:28:51.818Z",
  "updatedAt": "2026-03-11T07:40:15.814Z"
}