Developers

API-first, all the way down.

Every Veeexa service is a REST API you can automate — with one identity across all of them and consoles for the humans.

One sign-in

VXAuth is an OpenID Connect / OAuth2 provider used by every service, so your users and tokens work everywhere.

Scoped access

VXIAM issues service accounts and API keys and evaluates policy-based access decisions across the platform.

Built for AI

Veeexa MCP servers expose VeexaDB, VXAuth, VXLake, VXRun, and a platform server as tools for AI assistants like Claude.

Consoles included

VXConsole and VXAdmin give teams a UI over the same APIs — keys, webhooks, audit logs, and branding.

Metered usage

VXBilling meters usage across services, so a single bill reflects what you actually use.

Run it anywhere

Deploy your own apps on VXRun and route them with VXLB — the same primitives Veeexa runs on.

Authenticate once, call anything

# Sign in with VXAuth, then call any service with the token
curl -X POST https://auth.veeexa.com/oauth/token \
  -d grant_type=client_credentials -d client_id=$ID -d client_secret=$SECRET

curl https://s3.veeexa.com/buckets \
  -H "Authorization: Bearer $TOKEN"

Illustrative. Endpoints and hostnames are finalized per service.