Skip to content
Start with the production API - https://api.auvo.com.br/v2

Start your Auvo integration in minutes.

Authenticate with apiKey and apiToken, receive a 30-minute Bearer JWT and make your first authenticated call with ready-to-run examples.

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

3-step quickstart

Authenticate, list users and register your first task in under 5 minutes.

  1. Get credentials

    Open Menu > Integration at app.auvo.com.br and copy apiKey and apiToken. Store them in a secret manager, never in source code.

  2. Authenticate and receive the token

    The response includes result.accessToken, a JWT valid for 30 minutes. Renew it by calling /login again when it is close to expiry.

    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

    Use the token in the Authorization header to query account resources, such as the user list.

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

Next steps

After the first call, go deeper into authentication, pagination and webhooks to integrate Auvo securely.