Woopra API is mostly RESTful. API calls should be made with HTTP POST/GET to https://www.woopra.com/rest/[version]/[call].
A valid response has a 200 status code and a valid JSON in the body.
API Call Rate Limits: 300 per minute, 600 per hour and 3000 per day
Authentication
Generate a new Access Key in your members area, use App Id and Secret Key as user and password respectively for your Http Basic Authorization header:
Example Command Line (curl):
curl --user AppID:SecretKey https://www.woopra.com/rest/2.4/report ...
Versioning
Current version: 3.0
Examples
Using curl
curl https://www.woopra.com/rest/3.0/online/count \
--user QSBEUTTEZ8J5CEUVIUECQK99PWVH7TLE:wmaH6Oqk9THl7gW3nouRBSsIHyM8d9YJjIhwRgTLbUI1Spnnqb4bqMEP7CuBJQ7C \
-X POST -d \
'{
"website": "woopra.com"
}'
