Developers
Integrate VCU Config directly into your own tools, scripts, and workflows. Our REST API gives you programmatic access to save, load, and analyze ZombieVerter configurations.
The VCU Config API lets you interact with the platform programmatically. You can save configurations to your account, list and load saved configs, and run health checks — all without using the browser. The API is designed to work with your own custom scripts and third-party tools.
Base URL:
https://vcuconfig.com
Content-Type:
application/json
All public API endpoints require an API key. Pass it in the
X-API-Key
request header. No session cookie is needed — this makes the API
suitable for cross-origin and server-to-server use.
X-API-Key: evc_yo.../li>
You can also retrieve your API key programmatically using session authentication (requires being logged in via browser first). This is useful for scripts that need to bootstrap an API key automatically.
/api/key
Retrieve your API key. Requires an active login session (browser cookie). If you don't have a key yet, one is automatically created for you.
/api/public/save
Save a configuration to your account via API key. Cross-origin friendly — no session cookie required.
/api/public/configs
List all saved configurations for your account.
/api/public/load/{id}
Load a specific config by its numeric ID.
| Parameter | Type | Description |
|---|---|---|
id |
integer | Config ID from a list or save response |
/api/health-check
Analyze a params.json config and return a health report. No authentication required for this single endpoint — ideal for quick CI or pre-flight checks.
/api/configs
List saved configs using session authentication (browser cookie). Same as /api/public/configs but authenticated via your login session instead of an API key. Useful for custom integrations that run inside the logged-in browser context.