PHPackages                             rapidapi/rapidapi-connect - 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. rapidapi/rapidapi-connect

ActiveLibrary

rapidapi/rapidapi-connect
=========================

Connect to blocks on the rapidapi.com marketplace

0.0.2(9y ago)22.4k1MITPHPPHP ^5.3.3 || ^7.0

Since Oct 6Pushed 8y ago2 watchersCompare

[ Source](https://github.com/RapidSoftwareSolutions/RapidAPIConnect_PHP)[ Packagist](https://packagist.org/packages/rapidapi/rapidapi-connect)[ RSS](/packages/rapidapi-rapidapi-connect/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (1)Dependencies (1)Versions (4)Used By (0)

\#RapidAPI Connect - PHP SDK

This SDK allows you to connect to RapidAPI blocks from your php app. To start off, follow the following guide:

[![MIT Licence](https://camo.githubusercontent.com/57a78e9d793bcdcd334210014933764596fd7d9d8cc032452d6859527053280d/68747470733a2f2f6261646765732e66726170736f66742e636f6d2f6f732f6d69742f6d69742e706e673f763d313033)](https://opensource.org/licenses/mit-license.php)[![forthebadge](https://camo.githubusercontent.com/0500e27fcd4b4f7e01d2adc0aa3f86ccf34c369c2297ec3acd9fe06320a47d52/687474703a2f2f666f7274686562616467652e636f6d2f696d616765732f6261646765732f6275696c742d62792d646576656c6f706572732e737667)](http://forthebadge.com)

\##Set-up:

First of all, download the sdk by composer:

```
composer require rapidapi/rapidapi-connect

```

Then, require composer autoload and use package in your code:

```
require __DIR__ . '/vendor/autoload.php';

use RapidApi\RapidApiConnect;

```

Once required, the last step is to initialize the SDK with your project name and project API Key:

```
$rapid = new RapidApiConnect('PROJECT_NAME', 'API_KEY');

```

That's all, your SDK is set up! You can now use any block by copying the code snippet from the marketplace.

\##Usage:

To use any block in the marketplace, just copy it's code snippet and paste it in your code. For example, the following will call the **Calculate.add** block, and print the result:

```
print_r($rapid->call('Calculate', 'add', ['num1' => 11, 'num2' => 2]));

```

The printed result will be:

```
Array
(
    [success] => 13
)

```

**Notice** that the `error` event will also be called if you make an invalid block call (for example - the package you refer to does not exist).

\##Files: Whenever a block in RapidAPI requires a file, you can either pass a URL to the file or a read stream.

\###URL: The following code will call the block MicrosoftComputerVision.analyzeImage with a URL of an image:

```
    $response = $rapid->call('MicrosoftComputerVision', 'analyzeImage',
    ['subscriptionKey' => '############################', 'image' => 'https://i.ytimg.com/vi/tntOCGkgt98/maxresdefault.jpg']
    );

```

\###Read Stream If the file is locally stored, you can read it using `CURLFile` and pass the read stream to the block, like the following:

```
    $image = new CURLFile('/YOUR_PATH_HERE/maxresdefault.jpg');

    $response = $rapid->call('MicrosoftComputerVision', 'analyzeImage',
    ['subscriptionKey' => '############################', 'image' => $image]
    );

```

The printed result of `print_r($response)` will be:

```
Array
(
    [success] => {"categories":[{"name":"animal_cat","score":0.99609375}],"requestId":"6f7a1129-d6ff-4975-8725-d3593fc526c7","metadata":{"width":1600,"height":1200,"format":"Jpeg"}}
)

```

RapidAPI uses the [form-data](https://github.com/form-data/form-data) library by [@felixge](https://github.com/felixge) to handle files, so please refer to it for more information.

\###Webhooks After setting up the webhook, you can listen to real-time events via websockets.

```
require __DIR__ . "/vendor/autoload.php";

use Ratchet\Client\WebSocket;
use React\EventLoop\Factory;

$loop = Factory::create();

$rapid = new RapidApi\RapidApiConnect("PROJECT_NAME", "API_KEY");

$webhook = $rapid->connectionFactory($loop);

$webhook($rapid->getWebHookToken("Slack", "slashCommand"))
    ->then(function (WebSocket $websocket) use ($loop, $rapid) {

        return $rapid->createListener($websocket, $loop, ["token" => "your_token_here", "command" => "/slash_command"]);
    }, function (\Exception $e) use ($loop, $rapid) {

        echo $rapid->createCallback("close", $e->getMessage()) . PHP_EOL;
    })
    ->then(null, null, function ($notify) {

        echo $notify;
    });

$loop->run();

```

\##Issues:

As this is a pre-release version of the SDK, you may expirience bugs. Please report them in the issues section to let us know. You may use the intercom chat on rapidapi.com for support at any time.

\##Licence:

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity20

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity50

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 73.7% 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 ~164 days

Total

2

Last Release

3343d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/e5298b5ca7b7a6c43fcdb553db28e608f2cb688fe726affa2653a7d4c3515603?d=identicon)[rapidapi](/maintainers/rapidapi)

---

Top Contributors

[![Acceptto](https://avatars.githubusercontent.com/u/4974432?v=4)](https://github.com/Acceptto "Acceptto (14 commits)")[![Spyes](https://avatars.githubusercontent.com/u/100446?v=4)](https://github.com/Spyes "Spyes (5 commits)")

### Embed Badge

![Health badge](/badges/rapidapi-rapidapi-connect/health.svg)

```
[![Health](https://phpackages.com/badges/rapidapi-rapidapi-connect/health.svg)](https://phpackages.com/packages/rapidapi-rapidapi-connect)
```

###  Alternatives

[team-reflex/discord-php

An unofficial API to interact with the voice and text service Discord.

1.1k379.4k24](/packages/team-reflex-discord-php)[web3p/web3.php

Ethereum web3 interface.

1.3k325.5k41](/packages/web3p-web3php)[jaggedsoft/php-binance-api

PHP Binance API is an asynchronous PHP library for the Binance API designed to be easy to use.

644179.0k4](/packages/jaggedsoft-php-binance-api)[renoki-co/php-k8s

Control your Kubernetes clusters with this PHP-based Kubernetes client. It supports any form of authentication, the exec API, and it has an easy implementation for CRDs.

321669.7k2](/packages/renoki-co-php-k8s)[maclof/kubernetes-client

A simple yet elegant client for accessing and controlling a Kubernetes cluster.

235889.1k4](/packages/maclof-kubernetes-client)[ringcentral/ringcentral-php

RingCentral Platform PHP SDK

541.2M5](/packages/ringcentral-ringcentral-php)

PHPackages © 2026

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