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

Page
Purpose

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

  • Verifiableencoded_tx_data is calldata you submit yourself from your strategist address; the API never holds keys or signs

  • Simulated 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:

  1. Reach out to your Veda contact

  2. Once your account is provisioned, sign in to console.veda.tech

  3. Follow Quick Start to create your first key

Last updated