example-data.com

documents / #102

ownerUserId
168
orgId
Johns, Reinger and Toy
title
Runbook: Performance Review
slug
runbook-performance-review
content
Labore carbo annus deleniti reprehenderit tactus ara. Corpus centum vero coerceo venio deserunt eos valeo. Coerceo vilicus quam. Sol atavus alter clamo cubitum aiunt. Collum solvo porro id dedico. Omnis vomito amet calamitas dicta.
isPublic
true
createdAt
updatedAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/documents/102" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/documents/102"
);
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/102"
);
const document = (await res.json()) as Document;
import requests

res = requests.get(
    "https://example-data.com/api/v1/documents/102"
)
document = res.json()
{
  "id": 102,
  "ownerUserId": 168,
  "orgId": 19,
  "title": "Runbook: Performance Review",
  "slug": "runbook-performance-review",
  "content": "Labore carbo annus deleniti reprehenderit tactus ara. Corpus centum vero coerceo venio deserunt eos valeo. Coerceo vilicus quam.\n\nSol atavus alter clamo cubitum aiunt. Collum solvo porro id dedico. Omnis vomito amet calamitas dicta.",
  "isPublic": true,
  "createdAt": "2025-08-24T07:10:47.482Z",
  "updatedAt": "2026-04-12T04:01:33.620Z"
}
Draftbit