Authentication
Getting Your API Key
Using Your API Key
Authorization: Bearer op_live_a3f2b1c4d5e6f7a8b9c0d1e2f3a4b5c6Example Request
curl https://api.opally.com/v1/analytics/overview \
-H "Authorization: Bearer op_live_your_api_key_here"const response = await fetch('https://api.opally.com/v1/analytics/overview', {
headers: {
'Authorization': 'Bearer op_live_your_api_key_here'
}
});import requests
response = requests.get(
'https://api.opally.com/v1/analytics/overview',
headers={'Authorization': 'Bearer op_live_your_api_key_here'}
)Key Format
Key Limits
Security Best Practices
Authentication Errors
Status Code
Error
Meaning
Last updated