Getting started with the API

Tracking code installation, webhooks, and API documentation

Learn how to use the Zenovay API to integrate analytics data into your applications and workflows.

API Overview

The Zenovay API provides programmatic access to:

  • Real-time visitor data
  • Historical analytics
  • Dashboard configurations
  • User management
  • Report generation

Authentication

Secure API access using API keys:

curl -H "Authorization: Bearer YOUR_API_KEY" \
     -H "Content-Type: application/json" \
     https://api.zenovay.com/v1/visitors

Base URL and Versioning

All API requests use the base URL:

https://api.zenovay.com/v1/

We use semantic versioning and maintain backward compatibility.

Response Format

All responses are in JSON format with consistent structure:

{
  "data": {...},
  "meta": {
    "status": 200,
    "message": "Success"
  }
}

Rate Limits

API rate limits by plan:

  • Starter: 100 requests/hour
  • Professional: 1,000 requests/hour
  • Business: 10,000 requests/hour
  • Enterprise: Custom limits

Was this article helpful?