Get Rate
This endpoint returns the current market rate of 1000 Robux on our platform
Endpoint: /rate
Request type: GET
const axios = require('axios');
const apiKey = 'YOUR_API_KEY';
axios.get('https://rocheap.com/business/api/rate', {
    headers: {
        'rocheap-api-key': apiKey
    }
})
.then(response => {
    console.log(response.data);
})
.catch(error => {
    console.error('Error:', error);
});
Example response:
{ success: true, rate: 4.5 }