SDKs
React Native SDK
Official SDK for React Native mobile applications.
Coming Soon
The React Native SDK is under development. Use REST APIs directly for now.
View API DocumentationUsing REST APIs in React Native
React Native
const fetchCryptoPrice = async () => {
const response = await fetch(
'https://pyrefm.xyz/api/data/crypto?symbol=SOL',
{
headers: {
'x-wallet-address': walletAddress,
'x-payment-proof': paymentProof,
},
}
);
const data = await response.json();
return data;
};