DOCUMENTATION

Build with BitSage

Everything you need to integrate verifiable GPU compute into your applications. From quick start guides to comprehensive API references.

Simple, Powerful API

Submit GPU jobs with just a few lines of code. Our Python SDK handles authentication, job scheduling, monitoring, and result verification automatically.

  • OpenAI-compatible API for inference
  • Real-time job monitoring via WebSocket
  • Cryptographic verification of results
  • Python, Node.js, and CLI support
main.py
from bitsage import BitSageClient

# Initialize client
client = BitSageClient(api_key="your-api-key")

# Submit a GPU job
job = client.jobs.submit(
    type="render",
    input={"scene": "scene.blend", "frames": [1, 100]},
    gpu="RTX-4090",
    verification="zk-proof"
)

# Monitor progress
for update in client.jobs.monitor(job.id):
    print(f"Progress: {update.progress}%")

# Get verified result
result = client.jobs.get_result(job.id)
print(f"Proof: {result.proof_hash}")
WHITEPAPER

The BitSage Manifesto

Deep dive into the technical architecture, cryptographic foundations, economic models, and roadmap for verifiable GPU compute.

ZK Proof Systems
Security Model
Tokenomics
Architecture
Read Manifesto

Get Help & Connect

Join our community of developers and GPU providers