example-data.com
Menu
Browse docs and collections

Overview

documents / #137

Report: Deployment Guide

ownerUserId
Myrl Pollich @myrl.pollich
orgId
Cremin - Kautzer
title
Report: Deployment Guide
slug
report-deployment-guide-137
content
Ducimus adimpleo substantia confido supellex combibo tersus caelestis tabella. Harum clarus consequatur. Comis arto officia adhaero. Optio apto tam demo dedecor culpo. Ambulo nesciunt eveniet. Occaecati libero arca curriculum antea aequitas.
isPublic
false
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/documents/137"
);
const document = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/documents.d.ts https://example-data.com/types/documents.d.ts
import type { Document } from "./types/documents";

const res = await fetch(
  "https://example-data.com/api/v1/documents/137"
);
const document = (await res.json()) as Document;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/documents/137"
)
document = res.json()

Response

{
  "id": 137,
  "ownerUserId": 90,
  "orgId": 2,
  "title": "Report: Deployment Guide",
  "slug": "report-deployment-guide-137",
  "content": "Ducimus adimpleo substantia confido supellex combibo tersus caelestis tabella. Harum clarus consequatur. Comis arto officia adhaero.\n\nOptio apto tam demo dedecor culpo. Ambulo nesciunt eveniet. Occaecati libero arca curriculum antea aequitas.",
  "isPublic": false,
  "createdAt": "2025-09-04T05:55:55.863Z",
  "updatedAt": "2025-09-26T22:07:58.840Z"
}