API Reference

The ListenLayer API allows you to programmatically interact with your tracking data, manage users, and configure your account.

Base URL

https://api.listenlayer.com/v1

Authentication

All API requests require authentication using an API key:

curl -X GET "https://api.listenlayer.com/v1/events" \
  -H "Authorization: Bearer YOUR_API_KEY"

Rate Limits

Plan
Requests per minute

Free

60

Pro

600

Enterprise

Custom

Response Format

All responses are returned in JSON format:

{
  "success": true,
  "data": { ... },
  "meta": {
    "page": 1,
    "total": 100
  }
}

Error Handling

Errors include a descriptive message and error code:

Quick Start

  1. Make your first request

  2. Explore available endpoints

Last updated