Skip to main content

Introduction

The VoxFi Public API allows you to interact with the VoxFi platform programmatically. All endpoints require authentication using an API key that you generate in your account settings.

Get Your API Key

  1. Log in to your VoxFi account
  2. Navigate to ProfileSecurity
  3. Generate a new API key
  4. Copy and securely store your API key (you won’t be able to see it again)
Keep your API key secure and never share it publicly. Treat it like a password.

Base URL

All API requests should be made to:
https://data-api-dev.voxfi.com.br/v1

Authentication

Every request to the API must include your API key in the request headers:
X-Api-Key: your-api-key-here

Your First Request

Let’s start by fetching a list of available events:
curl -X GET "https://data-api-dev.voxfi.com.br/v1/data/events" \
  -H "X-Api-Key: your-api-key-here"

Rate Limits

The API implements rate limiting to ensure fair usage. Rate limit information is returned in response headers when limits are approached.

Next Steps