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 8mo 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 3w ago

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

31

—

LowBetter than 66% of packages

Maintenance43

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

2258d 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

[aws/aws-sdk-php

AWS SDK for PHP - Use Amazon Web Services in your PHP project

6.3k543.5M2.6k](/packages/aws-aws-sdk-php)[matomo/matomo

Matomo is the leading Free/Libre open analytics platform

21.7k38.9k](/packages/matomo-matomo)[neuron-core/neuron-ai

The PHP Agentic Framework.

2.0k656.1k38](/packages/neuron-core-neuron-ai)[illuminate/http

The Illuminate Http package.

11937.9M6.8k](/packages/illuminate-http)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3741.3M46](/packages/tencentcloud-tencentcloud-sdk-php)[elgg/elgg

Elgg is an award-winning social networking engine, delivering the building blocks that enable businesses, schools, universities and associations to create their own fully-featured social networks and applications.

1.7k16.4k75](/packages/elgg-elgg)

PHPackages © 2026

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