LedgerCore
Exchange Data

Exchange Registry

Access comprehensive exchange information and metadata.

Overview

The Exchange Registry provides detailed information about cryptocurrency exchanges, including:

  • Exchange metadata
  • Supported trading pairs
  • Trading fees
  • Deposit/withdrawal methods
  • Regulatory status

Endpoint

GET /api/v1/exchanges

Example

const response = await fetch('http://localhost:8090/api/v1/exchanges', {
  headers: {
    'Authorization': `Bearer ${apiKey}`
  }
});

const exchanges = await response.json();

Next Steps

Was this page helpful?