← Back to blog

Inside Chia Cloud: Our Vision for Developer Infrastructure

July 17, 2025, 7 min read, Infrastructure

Chia Cloud is our AI native infrastructure layer, built for low latency, privacy, and developer speed. We are reducing the surface area you need to manage while giving you fine grained control where it matters.

Principles

Core building blocks

Spin up compute (API)

curl -X POST https://api.chiatech.com/v1/compute \
  -H "Authorization: Bearer $CHIA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "region": "us west",
    "size": "gpu small",
    "image": "pytorch 2.4",
    "labels": { "project": "demo" }
  }'

Upload a file (SDK)

import { ChiaClient } from "chia-sdk";
const client = new ChiaClient({ apiKey: process.env.CHIA_API_KEY });

await client.storage.upload("docs/spec.pdf", { bucket: "public" });
// -> returns { url, checksum, size }

Operational posture

Roadmap

Reach out