<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <title>Akash Network FAQ</title>
    <link rel="icon" href="/favicon.ico" />
    <style>
  :root { color-scheme: light dark; }
  body {
    margin: 0;
    padding: 3rem 1.25rem 5rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fff;
  }
  main {
    max-width: 44rem;
    margin: 0 auto;
  }
  h1, h2, h3, h4 { line-height: 1.25; margin-top: 2.25rem; }
  h1 { font-size: 2rem; margin-top: 0; }
  h2 { font-size: 1.375rem; }
  h3 { font-size: 1.125rem; }
  p, ul, ol, pre, blockquote { margin: 1rem 0; }
  a { color: #ff424c; }
  a:hover { text-decoration: underline; }
  code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    background: rgba(0, 0, 0, 0.06);
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-size: 0.9em;
  }
  pre {
    background: #0f172a;
    color: #e2e8f0;
    padding: 1rem 1.125rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    font-size: 0.875rem;
  }
  pre code { background: transparent; padding: 0; color: inherit; }
  blockquote {
    border-left: 3px solid #ff424c;
    padding: 0.25rem 0 0.25rem 1rem;
    color: #444;
    background: rgba(255, 66, 76, 0.05);
  }
  hr { border: 0; border-top: 1px solid #e5e5e5; margin: 2rem 0; }
  @media (prefers-color-scheme: dark) {
    body { color: #e5e5e5; background: #0a0a0a; }
    code { background: rgba(255, 255, 255, 0.08); }
    blockquote { color: #bbb; background: rgba(255, 66, 76, 0.08); }
    hr { border-top-color: #262626; }
  }
</style>
  </head>
  <body>
    <main><h1>Akash Network</h1>
<p><strong>Akash Network is an open-source cloud computing marketplace where independent providers bid to run containerized workloads, including NVIDIA GPUs. Developers and AI agents deploy to Akash Network with a credit card or a crypto wallet and pay auction prices rather than list prices.</strong></p>
<p><a href="https://console.akash.network">Deploy Now</a></p>
<p><a href="https://akash.network/gpus-on-demand">Get in Touch</a></p>
<h2>What is Akash Network?</h2>
<p>Akash Network is a permissionless marketplace for cloud compute. Providers — datacenters, mining operations, and individual hardware owners — offer spare CPU, GPU, memory, and storage. A tenant publishes a deployment request, providers bid against it, and the tenant accepts a bid. Akash Network settles those leases on its own Cosmos SDK blockchain. The software is Apache 2.0 licensed and developed in public.</p>
<h2>Can an AI agent deploy to Akash Network on its own?</h2>
<p>Yes. Akash Network ships five agent-facing interfaces: an open-source skill bundle for Claude Code, Codex, and OpenCode; an MCP server started with <code>akt mcp</code>; a REST API authenticated by a single <code>x-api-key</code> header; a single-binary CLI called <code>akt</code>; and Go and TypeScript SDKs. An agent holding an Akash Console API key can create a deployment, accept a provider bid, read logs, and close the deployment with no human approving any step.</p>
<h2>Do you need cryptocurrency to use Akash Network?</h2>
<p>No. Akash Console at console.akash.network is the managed path: sign up with an email address, add a credit card, and deploy. Billing is in US dollars, the minimum deployment deposit is $0.50, and no wallet, seed phrase, or token purchase is involved at any step. Programmatic access works the same way — the Console API authenticates with an API key and bills the same card.</p>
<h2>Can you deploy to Akash Network with your own wallet?</h2>
<p>Yes. Console Air is the self-custody deploy app: you connect a Keplr-compatible wallet, sign every transaction yourself, and can self-host the interface against your own RPC and API endpoints. It is the crypto-native path and it does require crypto — AKT for gas, and ACT, the deployment escrow currency, minted by burning AKT. The two apps deploy to the same network and are compared side by side at akash.network/docs/getting-started/choosing-your-console.</p>
<h2>What GPUs can you rent on Akash Network?</h2>
<p>Providers on Akash Network offer NVIDIA datacenter GPUs including H100 and A100 class hardware, alongside consumer cards such as the RTX 4090 and RTX 5090 contributed through the Akash Homenode program. Because every provider sets its own bid, availability, region, and price vary by provider rather than following a single rate card.</p>
<h2>How does deploying to Akash Network work?</h2>
<p>A tenant describes the workload in SDL, a YAML format specifying container image, CPU, memory, storage, GPU, and exposed ports. Publishing that deployment opens an auction, and provider bids typically arrive within 30 to 60 seconds. Accepting a bid creates a lease, the manifest is delivered off-chain to the winning provider, and the container starts. Funds sit in a per-deployment escrow account and unspent balance returns to the tenant when the deployment closes.</p>
<h2>What is confidential compute on Akash Network?</h2>
<p>Confidential compute runs a workload inside a hardware-isolated Trusted Execution Environment, so the provider hosting it cannot read the workload&#39;s memory. On Akash Network it is requested with one SDL field: <code>tee: cpu</code> for a confidential VM, or <code>tee: cpu-gpu</code> to combine it with NVIDIA GPU confidential computing. The provider selects AMD SEV-SNP or Intel TDX and handles attestation.</p>
<h2>Can you run AI agents and inference on Akash Network?</h2>
<p>Yes. Akash Network runs long-lived containers with persistent storage, custom domains, and dedicated IP leases, which is what a stateful agent needs to survive between sessions. Agents deployed this way can also call hosted open-weight models through AkashML, a managed inference service running on Akash Network, which exposes an OpenAI-compatible API at api.akashml.com and an Anthropic-compatible Messages endpoint at api.akashml.com/anthropic.</p>
<h2>Is Akash Network open source?</h2>
<p>Yes. The Akash node, provider software, Akash Console, Console Air, the <code>akt</code> CLI, and the Akash skill bundle for coding agents are Apache 2.0 licensed and developed at github.com/akash-network. Anyone can run a provider on Akash Network without permission or a commercial agreement.</p>
<h2>How does Akash Network compare to other GPU clouds?</h2>
<p>Side-by-side breakdowns against RunPod, Lambda Labs, AWS, and Heroku are published at <a href="https://akash.network/explore/compare/">akash.network/explore/compare</a>.</p>
<h2>Deploy on Akash Network</h2>
<p><a href="https://console.akash.network">Deploy Now</a></p>
<p><a href="https://akash.network/gpus-on-demand">Get in Touch</a></p>
<p>Onboard your agent by asking it to fetch and follow <a href="https://akash.network/get-started.md">the Akash setup playbook</a>.</p>
</main>
  </body>
</html>
