For the complete documentation index, see llms.txt. This page is also available as Markdown.

Quick Start

Get from zero to your first API call in under 5 minutes

This guide walks you through making your first BaseVol API call.

Step 1: Create an Account

Connect your wallet at basevol.com and deposit USDC to start trading.

Step 2: Generate an API Key

  1. Go to the API Keys page on the BaseVol dashboard

  2. Click Create API Key

  3. Set a name and select permissions (READ, TRADE)

  4. Optionally configure IP whitelisting

  5. Copy and securely store your API key — it is only shown once

Step 3: Make Your First Request (Public)

Fetch the list of available products. No authentication required.

curl https://api.basevol.com/api/v1/market/products

Response:

{
  "success": true,
  "data": [
    {
      "id": 1,
      "name": "BTC",
      ...
    }
  ]
}

Step 4: Make an Authenticated Request

Fetch your account information using the X-API-Key header.

Step 5: Place Your First Order

Place a 1-Hour option order. Requires an API key with TRADE permission.

Next Steps

AuthenticationAPI ReferenceBuilding a Trading Bot

Last updated