v1

VMaintain API

Programmatic access to your workspace data — sites, tickets, tasks, clients, monitors, and more. All endpoints are REST-style, return JSON, and are versioned under /api/v1/.

Base URL

https://v2-app.vmaintain.com/api/v1

Quick start

# 1. Get a token
curl -X POST /api/v1/auth/login \
-H 'Content-Type: application/json' \
-d '{"email":"you@example.com","password":"••••••••"}'
# 2. Use it
curl /api/v1/workspaces \
-H 'Authorization: Bearer <token>'

OpenAPI spec

The spec is auto-generated from source Zod schemas and served fresh on every build.