# Use access token to authenticate API requests headers = 'Authorization': f'Bearer access_token' response = requests.get('https://mx40-pro-device.com/api/v1/data', headers=headers)
With that, I can give you the exact authentication feature specification. Otherwise, the today is Bearer Token (JWT) obtained via a login endpoint. mx40 pro api authentication
– Look for sections: “REST API”, “HTTP API”, “Authentication”, “Security”. # Use access token to authenticate API requests
# Generate API key response = requests.get('https://mx40-pro-device.com/api/v1/auth/api-key') api_key = response.json()['api_key'] headers=headers) With that