API
Programmatic access to Veda vaults.
The Veda API is the programmatic surface for interacting with Veda vaults outside of the Veda Console. It exposes the same primitives that power Veda's first-party products — rebalancing, position data, fees, and accounting — to partners building automation, dashboards, custom strategist tooling, and back-office integrations.
Base URL: https://api.veda.tech
Authentication: Bearer token using an API key created in the Veda Console.
OpenAPI / Swagger: api.veda.tech/docs
What's here
Create an API key in the console and make your first authenticated call
Discover vault actions and build rebalance calldata
Full endpoint reference via the OpenAPI spec
What's new, what's deprecated, examples, rate limits
When to use the API
The API is the right choice when you need to:
Automate rebalancing — write a script or scheduled job that builds and submits rebalance transactions for a vault you operate as a strategist
Build a custom dashboard — surface vault state inside your own product
For everything the hosted API serves, the underlying data is also reconstructible directly from chain. Many partners run both: the API for the fast path, and their own indexer for whatever the API doesn't expose.
Capabilities
Protocol-, asset-, and chain-agnostic — the same endpoints work across every chain Veda supports
Verifiable —
encoded_tx_datais calldata you submit yourself from your strategist address; the API never holds keys or signsSimulated by default — every build is dry-run against Tenderly before returning, so you can catch reverts before broadcasting
Composable — batch multiple actions into a single atomic transaction with
execute-multiple
Getting access
API keys are provisioned per partner. If you don't already have a Veda Console account for your team:
Reach out to your Veda contact
Once your account is provisioned, sign in to console.veda.tech
Follow Quick Start to create your first key
Last updated