> ## Documentation Index
> Fetch the complete documentation index at: https://cockroachlabs.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# CockroachDB Cloud API

export const InternalLink = ({version, path = "", children, ...props}) => {
  let detectedVersion = version || "stable";
  if (typeof window !== 'undefined' && !version) {
    const match = window.location.pathname.match(/\/docs\/([^/]+)/);
    if (match) {
      detectedVersion = match[1];
    }
  }
  const normalizedPath = path.startsWith("/") ? path.slice(1) : path;
  return <a href={`/docs/${detectedVersion}/${normalizedPath}`} {...props}>
      {children}
    </a>;
};

An API for managing CockroachDB Cloud resources.

* [Download OpenAPI spec](https://cockroachlabs.cloud/assets/docs/api/latest/openapi.json)

For more information on how to use this API, read the <InternalLink version="cockroachcloud" path="cloud-api">Cloud API documentation</InternalLink>
