Compare

x402-hosting vs Vercel.

Vercel created Next.js and offers a broad hosting platform built around accounts, teams, and Git-connected deployments. x402-hosting is a narrow, prepaid hosting service from Amsterdam: one command publishes a Next.js app, the wallet that pays owns the project, and no account exists at all. The two products answer the same question — how do I get a Next.js app online — with opposite models.

At a glance

  • Vercel: account, dashboard, and plan; x402-hosting: no account
  • Vercel: billed per plan and usage; x402-hosting: $0.20 per project-day, prepaid in USDC
  • Vercel: your projects live under a login; x402-hosting: the paying wallet owns the project
  • Vercel: broad platform surface; x402-hosting: Next.js deploys and nothing else
  • x402-hosting: every operation is a CLI command or plain HTTP endpoint an agent can call

Two ownership models

On Vercel, your projects belong to an account. Access runs through logins, team memberships, and tokens, and losing the account can mean losing the projects. On x402-hosting there is no account to lose: the wallet that pays the first $0.01 upload owns the project, and every later paid mutation — redeploy, renew, rollback, transfer, delete — must settle from that same wallet. Ownership is cryptographic, and it can change hands with a single transfer while the site stays online.

Monthly plans versus prepaid project-days

Vercel bills through plans with usage-based components, which suits teams running many applications continuously. x402-hosting charges a fixed $0.20 per project-day up front: thirty days of hosting costs $6.01 in total, a redeploy costs $0.01, and status reads are free. There is no subscription, no stored card, and no automatic renewal — hosting simply expires unless you renew, with a 30-day grace window to change your mind. The pricing page is the whole pricing model.

Agents and automation

Vercel automation runs through API tokens scoped to an account, which an agent or pipeline must store as a secret. x402-hosting replaces tokens with payments: the credential is a wallet signing an HTTP 402 challenge, so there is no API key to leak or rotate. The entire product — discovery, pricing, deployment, verification — is machine-readable, from /llms.txt to free status --json reads. Deploying looks like this:

$ npx x402-hosting@latest deploy --days 30

Who should choose which

Choose Vercel if you want a broad platform: deep Git integration with a deployment per pull request, team dashboards, and a large surface of adjacent products, and you are comfortable anchoring all of it to an account. Choose x402-hosting if you want a production URL for a Next.js app with no account, a price you can compute in your head, and infrastructure an agent can operate end to end. An active project includes static assets, 100,000 dynamic requests, and 15 million CPU milliseconds, which covers real applications rather than only toy sites.

Related guides