0.0.1
OAS 3.0.3

San Francisco Compute Documentation

It's a market for very large scale GPU clusters.

Client Libraries

Orders

Place buy and sell orders for contracts on accelerator nodes.

/v0/orders

Headers
  • authorization
    string ^Bearer .*

    Generate a bearer token with $ sf tokens create.

Body
application/json
anyOf
Example{ "side": "buy", "instance_type": "h100i", "quantity": 1, "start_at": "2024-12-17T20:32:23.385Z", "end_at": "2024-12-17T21:32:23.385Z", "price": 28500 }
Responses
POST/v0/orders
curl /v0/orders \
  --request POST \
  --header 'Content-Type: application/json' \
  --data '{
  "side": "buy",
  "instance_type": "h100i",
  "quantity": 1,
  "start_at": "2024-12-17T20:32:23.385Z",
  "end_at": "2024-12-17T21:32:23.385Z",
  "price": 28500
}'
{
  "object": "…",
  "id": "…",
  "status": "…"
}