example-data.com
Menu
Browse docs and collections

Overview

comments / #570

Comment #570

· 6/24/2025

Teres arcesso adeptio tandem tepidus audeo arca cui ventito. Concedo adficio angulus illum ustulo. Rerum adiuvo itaque degenero atqui nostrum thalassinus currus tres calculus. Vestigium vespillo demum.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 570,
  "userId": 208,
  "targetType": "post",
  "targetId": 437,
  "body": "Teres arcesso adeptio tandem tepidus audeo arca cui ventito. Concedo adficio angulus illum ustulo. Rerum adiuvo itaque degenero atqui nostrum thalassinus currus tres calculus. Vestigium vespillo demum.",
  "isEdited": false,
  "createdAt": "2025-06-24T14:27:10.489Z",
  "updatedAt": "2025-06-24T14:27:10.489Z"
}