Authentication
Rate Limiting
π€Request for an API Key:
π‘οΈ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));Last updated