Overview
Brave NewCoin provides a suite of APIs focused on digital asset market data and analytics, catering to developers and technical buyers in the cryptocurrency and blockchain sectors. Established in 2014, the platform offers access to real-time and historical data for a wide array of cryptocurrencies and digital assets. Its core offerings include the Digital Asset Data API, the BLX (BNC Liquid Index), and BNC-FI (Fixed Income Indices), designed to support various financial applications and research initiatives.
The Brave NewCoin API is particularly suited for scenarios requiring reliable and comprehensive cryptocurrency market information. This includes building algorithmic trading bots that need up-to-the-second price feeds, developing research platforms that analyze historical trends, or managing digital asset portfolios where accurate valuations are critical. The API structure is documented with examples in Python and JavaScript, facilitating integration into diverse development environments. Developers can access data points such as open, high, low, close (OHLC) prices, trading volumes, and specific index values like the BNC Liquid Index, which aims to provide a real-time, fair value for Bitcoin against the US Dollar by aggregating data from multiple exchanges and applying a proprietary methodology to ensure data integrity and liquidity representation BNC Liquid Index methodology. This level of detail supports sophisticated financial modeling and decision-making.
Beyond raw market data, Brave NewCoin also offers calculated indices that provide benchmarks for the performance of specific digital assets or market segments. For instance, the BNC-FI indices are designed to track the performance of fixed-income instruments within the digital asset space, offering a novel perspective for institutional investors exploring this emerging asset class. The emphasis on data quality and methodological transparency positions Brave NewCoin as a resource for those requiring validated and structured digital asset information. Its utility extends from individual developers prototyping new applications to financial institutions requiring robust data feeds for regulatory compliance and advanced analytics.
Key features
- Digital Asset Data API: Provides access to real-time and historical market data for thousands of cryptocurrencies, including price, volume, and exchange-specific order book data.
- BLX (BNC Liquid Index): Offers a real-time, USD-denominated benchmark price for Bitcoin, derived from aggregated and weighted data across multiple exchanges Brave NewCoin API documentation.
- BNC-FI (Fixed Income Indices): Provides indices designed to track the performance of digital asset fixed-income instruments, catering to institutional investment strategies.
- SDKs for Multiple Languages: Official SDKs are available for Python, JavaScript, and Java, simplifying API integration and reducing development time.
- Comprehensive Documentation: Detailed API reference and guides are provided with code examples to aid developers in implementing data retrieval and processing.
- Historical Data Access: Users can query extensive historical datasets for various digital assets, enabling backtesting of trading strategies and in-depth market analysis.
- Real-time Data Streams: Offers access to live market updates, crucial for applications requiring immediate data for trading or monitoring.
Pricing
Brave NewCoin offers a tiered pricing model, including a free developer plan and multiple paid options tailored for professional and enterprise use. The pricing structure is designed to scale with usage and required data access levels.
As of May 2026, the pricing is structured as follows Brave NewCoin pricing page:
| Plan Name | Monthly Cost | Key Features |
|---|---|---|
| Developer Plan | Free | Limited endpoints, restricted request volume, suitable for prototyping and evaluation. |
| Professional Plan | From $99 | Increased request limits, access to more data endpoints, suitable for individual developers and small teams. |
| Enterprise Plan | Custom pricing | High request volumes, dedicated support, custom data feeds, tailored for institutional clients and large-scale applications. |
Common integrations
Brave NewCoin's API is designed for integration into various financial and analytical platforms. Its data can be consumed by custom applications built with the provided SDKs or through direct HTTP requests. Typical integration scenarios include:
- Algorithmic Trading Platforms: Integrating real-time and historical price data for automated trading strategies.
- Portfolio Management Systems: Feeding current asset prices and index values to track portfolio performance and valuations.
- Financial Research Tools: Utilizing historical data for academic or professional analysis of cryptocurrency market trends.
- Decentralized Finance (DeFi) Applications: Providing reliable oracle data for smart contracts and other DeFi protocols.
- Data Visualization Dashboards: Displaying real-time market overviews and historical charts within custom dashboards.
- Regulatory Compliance Systems: Supplying auditable market data for reporting and compliance with financial regulations.
Alternatives
For developers and institutions seeking cryptocurrency market data, several alternatives offer similar or complementary services:
- CoinAPI: Provides real-time and historical data from numerous cryptocurrency exchanges, focusing on high-speed data delivery.
- Amberdata: Offers comprehensive blockchain network data, market data, and DeFi analytics for institutional clients.
- Kaiko: Specializes in institutional-grade cryptocurrency market data, covering trade data, order books, and aggregated indices.
- Cloudflare Stream Live Input Details: While not a direct market data provider, Cloudflare offers APIs for managing live streaming inputs, which can be part of a broader data ingestion pipeline for real-time applications, demonstrating diverse API utility in adjacent technical fields.
Getting started
To begin using the Brave NewCoin API, developers can sign up for a free Developer Plan to obtain an API key. The following Python example demonstrates how to fetch the latest BLX (BNC Liquid Index) value using a simple HTTP request, which is a common starting point for integrating market data.
import requests
# Replace with your actual API key obtained from Brave NewCoin developer portal
API_KEY = 'YOUR_API_KEY'
# Endpoint for the BNC Liquid Index (BLX) latest value
url = "https://api.bravenewcoin.com/v2/market_data/BLX/latest"
headers = {
"x-api-key": API_KEY,
"Accept": "application/json"
}
try:
response = requests.get(url, headers=headers)
response.raise_for_status() # Raise an HTTPError for bad responses (4xx or 5xx)
data = response.json()
if data and 'price' in data:
print(f"Current BLX Price: {data['price']}")
if 'timestamp' in data:
print(f"Timestamp: {data['timestamp']}")
else:
print("No price data found in the response.")
except requests.exceptions.HTTPError as http_err:
print(f"HTTP error occurred: {http_err} - {response.text}")
except requests.exceptions.ConnectionError as conn_err:
print(f"Connection error occurred: {conn_err}")
except requests.exceptions.Timeout as timeout_err:
print(f"Timeout error occurred: {timeout_err}")
except requests.exceptions.RequestException as req_err:
print(f"An unexpected error occurred: {req_err}")
except ValueError as json_err:
print(f"JSON decoding error: {json_err} - {response.text}")
This Python snippet initializes a request with the necessary API key and retrieves the latest Bitcoin Liquid Index value. For more complex queries, such as historical data or specific exchange data, consult the detailed Brave NewCoin API reference documentation.