Introduction
Base URL
https://api.opally.com/v1Quick Start
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'
}
});
const data = await response.json();
console.log(data);import requests
response = requests.get(
'https://api.opally.com/v1/analytics/overview',
headers={'Authorization': 'Bearer op_live_your_api_key_here'}
)
data = response.json()
print(data)npm install -g @opally/cli
opally login op_live_your_api_key_here
opally analytics overviewCLI
npm install -g @opally/cli
opally login op_live_your_api_key_hereopally emails list --limit 5
opally chats messages <id>
opally analytics overview --from 2026-03-01 --to 2026-03-13
opally leads list --source chat --jsonWhat can you build?
API Overview
Resource
Endpoints
Description
Last updated