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

# Pro Overview

> Programmatic access to Daya's currency trading platform

## Introduction

Daya Pro API provides programmatic access to our currency trading platform. Build trading bots, integrate market data into your applications, or automate your trading strategies.

<Info>
  Pro is a separate platform from Daya Onramp. It requires its own API keys and uses different authentication methods.
</Info>

## What You Can Build

<CardGroup cols={2}>
  <Card title="Trading Bots" icon="robot">
    Automate trading strategies with market and limit orders
  </Card>

  <Card title="Market Data Apps" icon="chart-line">
    Access real-time orderbook and market data
  </Card>

  <Card title="Portfolio Dashboards" icon="gauge">
    Track orders, trades, and account activity
  </Card>

  <Card title="Analytics Tools" icon="magnifying-glass-chart">
    Analyze trading patterns and market trends
  </Card>
</CardGroup>

## Available Markets

Pro currently supports the following trading pairs:

<Info>
  **Unified Balance:** You can use `USDT-NGN`, `USDC-NGN`, or `USD-NGN` as the symbol. All are treated equivalently and map to a single unified USD balance.
</Info>

| Input Symbol | Description                                |
| ------------ | ------------------------------------------ |
| `USDT-NGN`   | Tether USD to Nigerian Naira (recommended) |
| `USDC-NGN`   | USD Coin to Nigerian Naira                 |
| `USD-NGN`    | US Dollar to Nigerian Naira                |

## API Capabilities

### Public Endpoints (No Authentication)

Access market data without an API key:

* **Markets** - List all available trading pairs
* **Orderbook** - Real-time orderbook snapshots with configurable depth

### Authenticated Endpoints

With an API key, you can:

| Scope Required | Capabilities                                                                                |
| -------------- | ------------------------------------------------------------------------------------------- |
| **Read**       | View your orders, trades, balances, account data, deposit addresses, and withdrawal options |
| **Trade**      | Place market/limit orders, cancel orders, and initiate withdrawals                          |
| **Write**      | Manage support-enabled webhook configuration                                                |

## Key Differences from Onramp API

| Aspect           | Onramp API                 | Pro API            |
| ---------------- | -------------------------- | ------------------ |
| **Purpose**      | Fiat-to-crypto conversion  | Currency trading   |
| **Auth Header**  | `X-Api-Key`                | `X-Api-Key`        |
| **Key Prefix**   | `sk_sandbox_` / `sk_live_` | `daya_sk_`         |
| **Environments** | Sandbox + Production       | Production only    |
| **Scopes**       | Full access                | Read, Trade, Write |
| **Management**   | dashboard.daya.co          | Contact support    |

## Getting Started

<Info>
  API keys are generated by the Daya team. Contact [support@daya.co](mailto:support@daya.co) to request access.
</Info>

<Steps>
  <Step title="Request API Access">
    Contact [support@daya.co](mailto:support@daya.co) to set up your Pro account and request API keys with the scopes you need
  </Step>

  <Step title="Test Public Endpoints">
    Fetch market data without authentication to verify connectivity
  </Step>

  <Step title="Make Authenticated Requests">
    Add your API key to start accessing orders and placing trades
  </Step>
</Steps>

## Next Steps

<CardGroup cols={2}>
  <Card title="Authentication" icon="key" href="/pro/authentication">
    Set up API keys and learn about scopes
  </Card>

  <Card title="Quick Start" icon="rocket" href="/pro/quickstart">
    Place your first order in minutes
  </Card>
</CardGroup>
