example-data.com
Menu
Browse docs and collections

Overview

comments / #375

Comment #375

· 7/23/2025

Vinculum apud dignissimos incidunt statim. Conspergo earum vaco eum vesica ab modi ademptio concedo possimus. Viridis denego arbitro tabernus curo corrumpo nisi correptius cattus comprehendo.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 375,
  "userId": 160,
  "targetType": "post",
  "targetId": 411,
  "body": "Vinculum apud dignissimos incidunt statim. Conspergo earum vaco eum vesica ab modi ademptio concedo possimus. Viridis denego arbitro tabernus curo corrumpo nisi correptius cattus comprehendo.",
  "isEdited": true,
  "createdAt": "2025-07-23T15:14:00.179Z",
  "updatedAt": "2025-10-26T01:11:29.622Z"
}