Vultr: Difference between revisions

From wikinotes
No edit summary
Line 16: Line 16:
<blockquote>
<blockquote>
<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
curl "https://api.vultr.com/v2/account" \
curl "https://api.vultr.com/v2/instances" \
   -X GET \
   -X GET \
   -H "Authorization: Bearer ${API_KEY}"
   -H "Authorization: Bearer ${API_KEY}"
</syntaxhighlight>
</syntaxhighlight>
</blockquote><!-- API -->
</blockquote><!-- API -->

Revision as of 20:42, 25 September 2022

vultr is another cloud provider, like digitalocean.
it has a wider range of supported OS's, and cheaper rates.

Documentation

home https://www.vultr.com/
api https://www.vultr.com/api/

API

curl "https://api.vultr.com/v2/instances" \
  -X GET \
  -H "Authorization: Bearer ${API_KEY}"