PHPackages                             kain/rabbitmq-management-api - 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. [HTTP &amp; Networking](/categories/http)
4. /
5. kain/rabbitmq-management-api

AbandonedArchivedLibrary[HTTP &amp; Networking](/categories/http)

kain/rabbitmq-management-api
============================

RabbitMQ Management HTTP API

1.1(6y ago)124MITPHPPHP &gt;=7.4

Since Apr 21Pushed 6mo ago1 watchersCompare

[ Source](https://github.com/kainonly/rabbitmq-management-api)[ Packagist](https://packagist.org/packages/kain/rabbitmq-management-api)[ RSS](/packages/kain-rabbitmq-management-api/feed)WikiDiscussions master Synced yesterday

READMEChangelog (2)Dependencies (6)Versions (3)Used By (0)

rabbitmq-management-api
=======================

[](#rabbitmq-management-api)

RabbitMQ Management HTTP API

[![Packagist Version](https://camo.githubusercontent.com/0092322ed9a1f57748e1b37f96be1573fb5f94e3d56d2bbefd982b52dc612843/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6b61696e2f7261626269746d712d6d616e6167656d656e742d6170692e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/kain/rabbitmq-management-api)[![Travis (.org)](https://camo.githubusercontent.com/242f8c5961be0f656d6d124166262fcd0041aa0beab5f0a4f25f823226b91fd3/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6b61696e6f6e6c792f7261626269746d712d6d616e6167656d656e742d6170692e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/kainonly/rabbitmq-management-api)[![Coveralls github](https://camo.githubusercontent.com/8157df626bc0559a6d5df8a18ff0c8e25490034e6bd6f2284e7b82a9bed0d206/68747470733a2f2f696d672e736869656c64732e696f2f636f766572616c6c732f6769746875622f6b61696e6f6e6c792f7261626269746d712d6d616e6167656d656e742d6170692e7376673f7374796c653d666c61742d737175617265)](https://coveralls.io/github/kainonly/rabbitmq-management-api)[![PHP from Packagist](https://camo.githubusercontent.com/e4e637bda2aa1a1b8e871fd897711b3549a7d830dffa1755e952ea05e40b3efb/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f7068702d762f6b61696e2f7261626269746d712d6d616e6167656d656e742d6170692e7376673f636f6c6f723d626c7565267374796c653d666c61742d737175617265)](https://github.com/kainonly/rabbitmq-management-api)[![Packagist](https://camo.githubusercontent.com/5f0ed48e1efc45eacdbd0b0dcfda2f950bfe251cb00276cd537f8d96fea94235/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6b61696e2f7261626269746d712d6d616e6167656d656e742d6170692e7376673f636f6c6f723d626c7565267374796c653d666c61742d737175617265)](https://packagist.org/packages/kain/rabbitmq-management-api)[![License](https://camo.githubusercontent.com/b5739cdae15ea3439fbd6c7ec5ede5e79b1cc542bc6ad3f42a2aacf63c2afb10/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f6b61696e2f7261626269746d712d6d616e6167656d656e742d6170692e7376673f636f6c6f723d626c7565267374796c653d666c61742d737175617265)](https://github.com/kainonly/rabbitmq-management-api/blob/master/LICENSE)

#### Setup

[](#setup)

```
composer require kain/rabbitmq-management-api
```

#### Usage

[](#usage)

Create an RabbitMQ Management HTTP API client

```
use RabbitMQ\API\RabbitMQ;
use GuzzleHttp\Client;

$api = RabbitMQ::create(
    'http://localhost:15672/api/',
    'guest',
    'guest'
);

// Can also be like this
$client = new Client([
    'base_uri' => 'https://myrabbitproxy.com/api/',
    'auth' => ['guest', 'guest'],
    'timeout' => 30.0,
    'debug' => true,
    'verify' => false,
    'version' => 2.0
]);
$this->api = new RabbitMQ($client);
```

Get overview

```
use RabbitMQ\API\RabbitMQ;

$api = RabbitMQ::create(
    'http://localhost:15672/api/',
    'guest',
    'guest'
);

$response = $api->overview();

// Whether the response failed
$response->isError();

// Respond to the prompt message
$response->getMsg();

// Response return data
$response->getData();

// Returns an array of responses
$result = $response->result();
```

> Use method is consistent with the document

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance47

Moderate activity, may be stable

Popularity8

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity57

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 ~4 days

Total

2

Last Release

2205d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/9986159?v=4)[Kain](/maintainers/kainonly)[@kainonly](https://github.com/kainonly)

---

Top Contributors

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

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/kain-rabbitmq-management-api/health.svg)

```
[![Health](https://phpackages.com/badges/kain-rabbitmq-management-api/health.svg)](https://phpackages.com/packages/kain-rabbitmq-management-api)
```

###  Alternatives

[spatie/crawler

Crawl all internal links found on a website

2.8k16.3M52](/packages/spatie-crawler)[omniphx/forrest

A Laravel library for Salesforce

2724.4M8](/packages/omniphx-forrest)[akamai-open/edgegrid-client

Implements the Akamai {OPEN} EdgeGrid Authentication specified by https://developer.akamai.com/introduction/Client\_Auth.html

482.5M6](/packages/akamai-open-edgegrid-client)[muhammadhuzaifa/telescope-guzzle-watcher

Telescope Guzzle Watcher provide a custom watcher for intercepting http requests made via guzzlehttp/guzzle php library. The package uses the on\_stats request option for extracting the request/response data. The watcher intercept and log the request into the Laravel Telescope HTTP Client Watcher.

98239.8k1](/packages/muhammadhuzaifa-telescope-guzzle-watcher)[ory/hydra-client-php

Documentation for all of Ory Hydra's APIs.

1710.8k](/packages/ory-hydra-client-php)[meteocontrol/vcom-api-client

HTTP Client for meteocontrol's VCOM API - The VCOM API enables you to directly access your data on the meteocontrol platform.

175.7k1](/packages/meteocontrol-vcom-api-client)

PHPackages © 2026

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