BRIDGE Intelligence
BRIDGEIntelligence
Build/Getting Started/Quick Start

Quick Start

Make your first Bridge API call in under 5 minutes.

Prerequisites

Before you begin, you'll need:

  • A Bridge account (sign up at /login)
  • An API key (issued automatically when you create an account)
  • A terminal or HTTP client (curl, Postman, etc.)

1. Get Your API Key

Sign in to your Bridge account and navigate to the dashboard. Your API key will be displayed in the API Keys section. Copy it — you'll use it in the next step.

2. Make Your First Request

Test your connection with a simple health check:

curl https://api.gateway.service.d.bridgeintelligence.ltd/api/v1/health

You should see a response like:

{ "status": "UP", "timestamp": "2026-04-10T12:00:00Z" }

3. Fetch Live Market Data

The oracle price endpoint is publicly accessible — no API key required:

curl https://api.oracle.service.d.bridgeintelligence.ltd/api/v1/oracle/prices/BTC-USD

Response:

{ "pair": "BTC/USD", "price": 72308.04, "sources": [ { "source": "OTC_BINANCE", "price": 72310.00, "confidence": 0.90 }, { "source": "OTC_HTX", "price": 72300.01, "confidence": 0.88 }, { "source": "CHAINLINK_FEED", "price": 72403.18, "confidence": 0.95 } ], "spreadBps": 14, "isStale": false, "aggregatedAt": "2026-04-10T12:00:00Z" }

4. Create a Wallet

To create a wallet, you'll need to authenticate. Use your API key in the X-API-Key header:

curl -X POST https://api.gateway.service.d.bridgeintelligence.ltd/api/v1/wallets \ -H "X-API-Key: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "label": "My First Wallet", "currency": "USD" }'

5. What's Next

Last updated: April 10, 2026