example-data.com
Menu
Browse docs and collections

Overview

comments / #793

Comment #793

· 3/10/2025

Adiuvo stabilis summisse vapulus deludo aggredior ultra. Quas veniam tollo valeo deripio advenio quae. Benigne tenetur corpus defero mollitia iusto cometes argumentum canis theologus. Conspergo adsuesco curis aetas volup.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 793,
  "userId": 98,
  "targetType": "post",
  "targetId": 374,
  "body": "Adiuvo stabilis summisse vapulus deludo aggredior ultra. Quas veniam tollo valeo deripio advenio quae. Benigne tenetur corpus defero mollitia iusto cometes argumentum canis theologus. Conspergo adsuesco curis aetas volup.",
  "isEdited": false,
  "createdAt": "2025-03-10T20:24:05.094Z",
  "updatedAt": "2025-03-10T20:24:05.094Z"
}