Skip to the content.

API v2 overview

Endpoint catalogue and conventions for the Velip Public API v2.

The Velip Public API v2 is a REST-style HTTP API. Each endpoint is a single PHP route mounted under the base URL provided to your account (typically https://vox.velip.com.br/api/v2/).

Conventions

{
  "return": {
    "status": "OK",
    "status_code": "0",
    "cd_id": "..."
  }
}

When validation or auth fails, status carries the error message and status_code carries the numeric code documented in Error codes. HTTP status codes used:

HTTP Meaning
200 Success (status: "OK").
400 Validation / business error. status_code carries the precise code.
401 Authentication failure (token, IP allowlist, or brute-force lockout).

Endpoint catalogue

Read this first

  1. Getting started — base URL, request shape, encoding gotchas.
  2. Authentication — how tsid is generated and checked.
  3. Errors — the canonical error code table.
  4. Rate limits — per-IP, per-user, and SMS night cap.