example-data.com

documents / #137

ownerUserId
90
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

curl -sS \
  "https://example-data.com/api/v1/documents/137" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/documents/137"
);
const document = await res.json();
import type { Document } from "https://example-data.com/types/documents.d.ts";

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

res = requests.get(
    "https://example-data.com/api/v1/documents/137"
)
document = res.json()
{
  "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"
}
Draftbit