Sign in

Auva Go

Auva Go is the link intelligence platform of the Auva ecosystem. Shorten URLs, generate QR codes, and track every click with real-time analytics: all from a single dashboard at go.auva.dev.


Features


Quick Example

Create a short link in one API call:

text
POST https://go.auva.dev/api/links
Authorization: Bearer YOUR_ACCESS_TOKEN
Content-Type: application/json

{
  "url": "https://example.com/very/long/path/to/page",
  "slug": "my-link",
  "title": "My Landing Page"
}

Response:

text
{
  "id": "lnk_abc123",
  "shortUrl": "https://go.auva.dev/my-link",
  "originalUrl": "https://example.com/very/long/path/to/page",
  "slug": "my-link",
  "title": "My Landing Page",
  "clicks": 0,
  "createdAt": "2024-03-15T10:30:00.000Z",
  "qrCode": "https://go.auva.dev/api/qr/lnk_abc123"
}

If you omit the slug field, Auva Go generates a random 5-character slug automatically.


Dashboard

The Auva Go dashboard at go.auva.dev provides:


Learn More