Have an amazing solution built in RAD Studio? Let us know. Looking for discounts? Visit our Special Offers page!
CodeDelphiIDERAD Studio

Flex Your Vultr Muscles In Windows & Mobile Apps With This Super-Easy API

Vultr API Hero Image

The great thing about Delphi is that it makes the tough jobs really easy. For instance, take the task of controlling cloud servers. By using Windows App development tools like RAD Studio Delphi’s cross-platform Firemonkey FMX framework, you can actually EASILY write a small application that allows your users to control cloud-based virtual machines, cloud computing instances, and even full-on “bare metal” cloud servers. What’s more; we’re going to do it in just FIFTEEN lines of code! There are almost no other programming languages around which offer this kind of power in so few lines of code.

What is Vultr?

Vultr is a commercial company offering a range of cloud-computing resources along the lines of Microsoft Azure, Amazon AWS, and DigitalOcean. We wrote about Digital Ocean before when we accessed their API in the post: Easily Automate The DigitalOcean API From Windows And Mobile

Just like DigitalOcean and many of the other cloud hosting companies, Vultr (https://www.vultr.com) also has a comprehensive collection of APIs to access from our applications.

What are we going to use the Vultr API for?

We’re going to produce some code which allows us to start, suspend/pause and end Vultr virtual instances. The basics of this technique can be used to control other vendor’s offerings too such a DigitalOcean Droplet because the access process to their APIs are very similar.

How do I set up an  Application with Vultr’s API?

  • Go to the main Vultr website and sign up for an appropriate account which meets your needs. There’s something for everyone there but even the most basic levels support the API.
  • Sign in to Vultr Account here https://my.vultr.com
  • Go to Account Menu and then the API tab – by default it is disabled, so you have to enable it. Just follow their instructions which are straight-forward.
  • Vultr API is using Access Control layer to using our API Key, We have to set the IP subnet to access our API Key, or temporarily set “Allow” to all for development purposes.
  • Now, create a new Multi Device Application in your RAD Studio Delphi IDE.

In the previous DigitalOcean post we created a client API Rest connection to control the process of instance creation, deletion and to get all instances. For Vultr you can read the process in their documentation here, but of course you can check full source code here for how to code them.

Since in this article we’re discussing how to Start, Stop or Halt the Vultr instance we have created the first thing we should do Start a Vultr instance.

In the Vultr API documentation the examples says we can call their API as shown in the examples below:

Start a Vultr instance

Reboot a Vultr instance

Reinstall a Vultr instance

Delphi Vultr API code example

Based on those examples, we can create the Delphi code as follows like so:

It’s pretty succinct isn’t it? That’s the power of the Delphi language in action!

What does the Vultr’s Instance sample Windows application look like?

Vultr API screen shot 2021 05 02 at 20 46 07

Since we are using Delphi Firemonkey framework you can right-click on the targets in the project Window and compile the code to other supported platforms. This example of using the Vultr API example works for Windows, Android, iOS, macOS, and Linux. Cross platform, Vultr instance control for all desktop and mobile operating systems, in fifteen lines of code.

Check out the full source code here: https://github.com/checkdigits/DelphiVultrInstance_example


Reduce development time and get to market faster with RAD Studio, Delphi, or C++Builder.
Design. Code. Compile. Deploy.
Start Free Trial   Upgrade Today

   Free Delphi Community Edition   Free C++Builder Community Edition

About author

Senior Software Engineer | Delphi/FreePascal Enthusiast | Linux/ Unix Enthusiast

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

IN THE ARTICLES