Authorization.| Chave | Valor |
|---|---|
| Authorization | Bearer <token> |
| Content-Type | application/json |
import requests
headers = {
'Authorization': 'Bearer <token>',
'Content-Type': 'application/json'
}
response = requests.get('https://api.novuspagamentos.com/v1/endpoint', headers=headers)
data = response.json()