> ## Documentation Index
> Fetch the complete documentation index at: https://digitalsurge.com.au/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Digital Surge API

> Build on Australia's most user-friendly cryptocurrency exchange. Trade crypto in AUD, track your portfolio, and automate your strategy with the Digital Surge API.

The Digital Surge API gives you programmatic access to your [Digital Surge](https://digitalsurge.com.au) account: live AUD pricing for hundreds of cryptocurrencies, instant swaps, recurring buys, price triggers, portfolio balances, transaction history, and crypto withdrawals.

## What you can build

<CardGroup cols={2}>
  <Card title="Trading bots" icon="robot" href="/api-reference/private/estimate-swap">
    Quote and execute AUD ⇄ crypto swaps at live market prices, with built-in slippage protection.
  </Card>

  <Card title="Portfolio trackers" icon="chart-line" href="/api-reference/private/list-all-balances">
    Read balances, portfolio stats, and full transaction history across every asset you hold.
  </Card>

  <Card title="Price alerts & automation" icon="bell" href="/api-reference/private/list-price-triggers">
    Manage price triggers and recurring buys (DCA) programmatically.
  </Card>

  <Card title="AI agents" icon="sparkles" href="/guides/ai-agents">
    The Agentic AI Connector links Claude, ChatGPT, or any MCP-compatible agent straight to your account — no code required.
  </Card>
</CardGroup>

## Get started

<CardGroup cols={2}>
  <Card title="Quickstart" icon="rocket" href="/guides/quickstart">
    Make your first API call in under five minutes.
  </Card>

  <Card title="Authentication" icon="key" href="/guides/authentication">
    Create an API key in the Digital Surge app and start making authenticated requests.
  </Card>

  <Card title="API Reference" icon="book" href="/api-reference">
    Every endpoint, with parameters, response schemas, and an interactive playground.
  </Card>

  <Card title="Conventions" icon="list-check" href="/guides/conventions">
    Amounts, timestamps, pagination, and error handling — read this before you parse anything.
  </Card>
</CardGroup>

## Base URL

All API requests are made against:

```text theme={null}
https://app.digitalsurge.com.au
```

Public market-data endpoints (`/api/public/...`) need no authentication. Account endpoints (`/api/private/...`) require an [API key](/guides/authentication).

<Note>
  Digital Surge is an Australian exchange: prices are quoted in AUD, and a Digital Surge account is required for private endpoints.
</Note>
