Getting Started
Installation
Get started with PYRE APIs.
Requirements
- A Solana wallet (Phantom, Solflare, etc.)
- $PYRE tokens in your wallet
- Any HTTP client (fetch, axios, curl, etc.)
No Installation Required
PYRE uses standard REST APIs - no SDK installation needed! You can call our APIs directly from any language or platform.
JavaScript
// Just use fetch - no SDK needed!
const response = await fetch('https://pyrefm.xyz/api/data/crypto?symbol=SOL', {
headers: {
'x-wallet-address': 'YOUR_WALLET_ADDRESS',
'x-payment-proof': 'PAYMENT_PROOF',
}
});SDKs Coming Soon
Official SDKs for JavaScript, Python, and React Native are under development. In the meantime, use our REST APIs directly.