PHPackages                             keepcloud/vultr-api-laravel - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. keepcloud/vultr-api-laravel

ActiveLibrary

keepcloud/vultr-api-laravel
===========================

Laravel package for Vultr V2 Api

v1.0.1(3y ago)0120↓100%MITPHPPHP &gt;=7.0.0

Since Feb 8Pushed 3y ago1 watchersCompare

[ Source](https://github.com/keepcloud/vultr-api-laravel)[ Packagist](https://packagist.org/packages/keepcloud/vultr-api-laravel)[ RSS](/packages/keepcloud-vultr-api-laravel/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (3)Used By (0)

Vultr Api V2 Laravel package
============================

[](#vultr-api-v2-laravel-package)

[![Total Downloads](https://camo.githubusercontent.com/e8b922640e1198653c2a8aa854476958481dcfdee11a2f3204e8fb3451dc7df8/68747470733a2f2f706f7365722e707567782e6f72672f6167697573636c6f75642f76756c74722d6170692d6c61726176656c2f646f776e6c6f616473)](https://packagist.org/packages/agiuscloud/vultr-api-laravel)[![License](https://camo.githubusercontent.com/70b07aaed056b8ea3b14312ba42eb6914b07450c3dcd0768755d8445e5f957d8/68747470733a2f2f706f7365722e707567782e6f72672f6167697573636c6f75642f76756c74722d6170692d6c61726176656c2f6c6963656e7365)](https://github.com/edisoncosta/vultr-api-laravel/blob/master/LICENSE)

A simple wrapper to get started with the Vultr V2 Api.

Install
-------

[](#install)

```
composer require keepcloud/vultr-api-laravel

```

After updating composer, add the ServiceProvider to the providers array in config/app.php

```
KeepCloud\Vultr\VultrServiceProvider::class

```

Optionally you can use the Facade. Add this to your facades:

```
'Vultr' => KeepCloud\Vultr\Facades\Vultr::class

```

Publish config file
-------------------

[](#publish-config-file)

```
php artisan vendor:publish

```

Add your personal access token to your config (/config/vultr.php) or env file
-----------------------------------------------------------------------------

[](#add-your-personal-access-token-to-your-config-configvultrphp-or-env-file)

```
VULTR_TOKEN=Your_personal_access_token

```

You can create your token by visiting [your Vultr](https://cloud.vultr.com/profile/tokens) if you are using the newer vultr manager.

Usage
-----

[](#usage)

Add to your class

```
use KeepCloud\Vultr\Controllers\Vultr;

```

To use

```
$vultr = new Vultr;

// list vultrs
$vultr->get('vultr/instances');

// create a new vultr
$vultr->post('vultr/instances', [
    "region" => "us-east-1a",
    "type" => "g5-standard-1"
]);

// update a vultr
$vultr->put('vultr/instances/999', [
    "label" => "new label"
]);

// delete a vultr
$vultr->delete('vultr/instances/999');

```

[Filtering &amp; Sorting](https://developers.vultr.com/v4/filtering)

```
$vultr->get('vultr/distributions', [
    "vendor" => "Debian"
]);

$vultr->get('vultr/distributions', [
    "+or" =>
        [
            ["vendor" => "Debian"],
            ["deprecated" => true]
        ]
]);

```

Or, you can use the facade

```
Vultr::get('vultr/instances');

```

[Full API reference](https://developers.vultr.com/v4/introduction)

License
-------

[](#license)

This Vultr wrapper is open-sourced software licensed under the [MIT license](https://github.com/edisoncosta/vultr-api-laravel/blob/master/LICENSE).

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~2 days

Total

2

Last Release

1186d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/78050c5529b285cbd8e91f7b8ab3de76929882135a3b7777f20f9d5bfe54a192?d=identicon)[keepcloud](/maintainers/keepcloud)

---

Top Contributors

[![edisoncosta](https://avatars.githubusercontent.com/u/9742485?v=4)](https://github.com/edisoncosta "edisoncosta (4 commits)")

### Embed Badge

![Health badge](/badges/keepcloud-vultr-api-laravel/health.svg)

```
[![Health](https://phpackages.com/badges/keepcloud-vultr-api-laravel/health.svg)](https://phpackages.com/packages/keepcloud-vultr-api-laravel)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
