Rate Limits and Authentication
Rate Limiting
Authentication
const headers = {
'x-api-key': 'YOUR_API_KEY'
};
fetch('https://api2.blockend.com/v1/tokens', { headers })
.then(response => response.json())
.then(data => console.log(data));curl -X GET "https://api2.blockend.com/v1/tokens" \
-H "x-api-key: YOUR_API_KEY"Last updated