Documentation

Everything you need to get started with Anor Cloud.

Quick Start

1. Install the CLI

$pip install anor-cli

2. Authenticate

$anor login

This will open a browser window to authenticate with your Anor Cloud account.

3. Create your first cluster

# Create 8 B300 GPUs for 1 hour
$ anor nodes create -n 1 -d 1h

# List your nodes
$ anor nodes list

# SSH into a node
$ anor nodes ssh <node-name>

CLI Reference

CommandDescription
anor loginAuthenticate with your Anor Cloud account
anor nodes createCreate new GPU nodes
anor nodes listList all your active nodes
anor nodes ssh <name>SSH into a specific node
anor nodes delete <name>Delete a node
anor market pricesView current market prices
anor market orderbookView the order book
anor account balanceCheck your account balance

REST API

Base URL

https://api.anorcloud.com/v1

Authentication

All API requests require an API key in the header:

Authorization: Bearer YOUR_API_KEY

Endpoints

GET/nodesList all nodes
POST/nodesCreate a new node
GET/nodes/:idGet node details
DELETE/nodes/:idDelete a node
GET/market/pricesGet current prices
GET/market/orderbookGet order book
GET/accountGet account info

Python SDK

Installation

$pip install anor-sdk

Usage

from anor import AnorClient

client = AnorClient(api_key="your-api-key")

# Create a cluster
cluster = client.nodes.create(
    gpu_type="b300",
    count=8,
    duration="1h"
)

# List nodes
nodes = client.nodes.list()

# Get market prices
prices = client.market.prices()