example-data.com
Menu
Browse docs and collections

Overview

comments / #707

Comment #707

· 11/8/2024

Video demitto depromo earum verto.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 707,
  "userId": 28,
  "targetType": "post",
  "targetId": 196,
  "body": "Video demitto depromo earum verto.",
  "isEdited": true,
  "createdAt": "2024-11-08T17:30:57.150Z",
  "updatedAt": "2024-12-21T21:32:43.751Z"
}