Authentication
fetch("https://api.playground.engine.get-blockchain.io/stream", {
headers: {
"Content-Type": "application/json",
"X-token": "<string, required>"
},
method: "POST"
})import requests
headers = {
'X-Api-Key': '<string, required>',
'Content-Type': 'application/json',
}
response = requests.post('https://api.playground.engine.get-blockchain.io/stream', headers=headers){
"message": "Forbidden"
}Refreshing your access / Bearer token
Last updated