← All posts
ProductSeptember 13, 20263 min read

Veltra is now at veltradata.io

Veltra has moved from veltrabot.com to veltradata.io. Same API, same keys, same pricing. Every old link redirects, but scripts that call the API directly should switch hosts.

AnnouncementAPIVeltra

Veltra now lives at veltradata.io. The old name came from where this started: a high speed Solana trading bot, and the tooling we built to feed it trade history. The bot is retired. What is left is the data, a wallet trade history API covering Solana, the major EVM chains and Tron, and a domain that says what it is.

Nothing about your account changes. API keys, usage, billing, plans and quotas carry over untouched, and there is nothing to migrate.

Every path on veltrabot.com permanently redirects to the same path on veltradata.io, including the API under /v1 and the docs. Browsers, search engines and most HTTP clients follow that redirect without you doing anything.

Scripts should switch hosts

curl does not follow redirects unless you pass -L. A quickstart copied into a shell script before the move now gets a redirect response back instead of trade data. Changing the host fixes it, and saves every other client a round trip on each call:

curl -N "https://veltradata.io/v1/wallets/{address}/history" \
  -H "Authorization: Bearer YOUR_API_KEY"

The same applies to anything that treats a redirect as a failure, such as a webhook sender or a strict HTTP client with redirects turned off.

Where things live now

  • API and docs: veltradata.io/docs
  • Runnable examples: github.com/QuirkyTurtle11/veltra-examples
  • YouTube: @Veltradata, where the launch video is narrated separately in nine languages
  • Email: hello@veltradata.io
Start pulling trade history
100,000 trades free. No card required.
Get your API key

More from the blog