Skip to content
Production API - base https://api.auvo.com.br/v2

Connect your systems to your Auvo operation data.

The Auvo Developer Portal brings all API REST v2.0 documentation into one place - authentication, the full endpoint reference, ready-to-run cURL examples and webhooks to connect Auvo to your ERP, BI or internal application.

groups in API v2
28resource
REST endpoints
141documented
rate limit per IP
400req/min
operating with Auvo
16countries

Designed for field integrations

Optimized flows for workforce, operations and finance - the same primitives used in the Auvo app.

  • Simple and predictable REST

    Endpoints organized by domain, consistent HTTP verbs and stable response envelopes.

  • Bearer JWT authentication

    30-minute token via POST /login. Easy to rotate, easy to revoke. Sandbox is on the roadmap.

  • 400 req/min per IP

    Clear rate limit with status 403 and standardized JSON payload. Use pagination + backoff.

  • Native webhooks

    Subscribe to task, ticket and service-order events through authenticated POST calls to your URL.

  • Multi-language examples

    curl, Node.js, PHP, Python and Go in each operation - copy, run and adapt.

  • Weekly changelog

    Every relevant change lands in the changelog before production, with deprecations flagged 90 days ahead.

3-step quickstart

Authenticate, list users and register your first task.

  1. Get credentials

    In Menu > Integration, copy apiKey and apiToken. Keep them in a secret manager.

  2. Authenticate and receive the token

    Exchange apiKey + apiToken for an accessToken (30-minute JWT).

    curl -X POST https://api.auvo.com.br/v2/login \
      -H 'Content-Type: application/json' \
      -d '{"apiKey":"<YOUR_KEY>","apiToken":"<YOUR_TOKEN>"}'
  3. Make the first authenticated call

    List users with pagination.

    curl 'https://api.auvo.com.br/v2/users?page=1&pageSize=20' \
      -H "Authorization: Bearer $AUVO_TOKEN"

Guide tracks

  • Authentication

    Login flow, token rotation and secret management best practices.

  • Pagination

    pageInformation envelope, limits and emulated cursor strategies.

  • Rate limit

    400 req/min, response headers and recommended exponential backoff.

  • Webhooks

    Subscription, payloads, retries and origin validation.

  • Errors

    HTTP codes, error payload, idempotency and troubleshooting.

  • Versioning

    Breaking-change policy, deprecations and notification channel.

Ready to integrate?

Open the full reference or send a question to help@auvo.com.br.