Cryptocurrency Price Feed

Real-time cryptocurrency prices with enterprise-grade reliability. Access current and historical data through our API.

Live Prices

AssetPriceChange

Real-Time Updates

Get price updates within milliseconds using our WebSocket API.

Learn More

Historical Data

Access historical price data with granular timeframe options.

View Documentation

Price Alerts

Set up custom price alerts and notifications via webhooks.

Set Up Alerts

Developer-First API

Access real-time cryptocurrency prices and conversions with our simple REST API. Built for developers, by developers.

// Get current price
const response = await fetch(
'https://api.anypayx.com/api/v1/prices'
)
const { price } = await response.json()
console.log(`Bitcoin price: $${price}`)
// Convert between currencies
const response = await fetch(
'https://api.anypayx.com/api/v1/convert', {
method: 'POST',
body: JSON.stringify({
from: 'USD',
to: 'BTC',
amount: 100
})
}
)
const { converted } = await response.json()
console.log(`$100 = ${converted} BTC`)

Features

  • Real-time price updates
  • Multiple exchange rates
  • Historical data access
  • Websocket price streams

Documentation

Comprehensive API documentation with examples in multiple languages.

View Documentation