Documentation
Everything you need to buy, trade, and deploy tokenized GPU compute. From first token to production cluster.
Quick Start
Go from zero to GPU session in 5 minutes.
API Reference
Full endpoint documentation with examples.
SDKs & Libraries
Python, Node.js, and Go client libraries.
Getting Started
Compute Tokens
Token Mechanics
How tokens map to GPU-hours, memory tiers, and priority levels.
Buying & Selling
Trade tokens on the marketplace with market or limit orders.
Redemption
Convert tokens into live sessions, API credits, or batch jobs.
Vaults & Staking
Lock tokens to earn yield, discounts, and priority access.
API Reference
ROCm Services
Example: Launch an Inference Job
import { LubbockClient } from '@lubbock/sdk';
const client = new LubbockClient({
apiKey: process.env.LUBBOCK_API_KEY,
});
// Redeem 4 LUB-MI300X tokens for an inference session
const job = await client.compute.create({
gpu: 'MI300X',
durationHours: 4,
jobType: 'inference',
config: {
model: 'meta-llama/Llama-3-70B',
quantization: 'fp16',
maxBatchSize: 32,
},
});
console.log(job.id); // "job-abc123"
console.log(job.endpoint); // "https://compute.lubbock.cloud/job-abc123"
console.log(job.status); // "provisioning"