PHPackages                             harm-smits/sendcloud-shipping-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. [API Development](/categories/api)
4. /
5. harm-smits/sendcloud-shipping-api

ActiveLibrary[API Development](/categories/api)

harm-smits/sendcloud-shipping-api
=================================

A PHP Client for the SendCloud Shipping API with async support and full object mapping

v1.5.10(4y ago)261[2 PRs](https://github.com/best-brands/sendcloud-shipping-api/pulls)MITPHPPHP &gt;=7.4

Since Jun 15Pushed 3y ago1 watchersCompare

[ Source](https://github.com/best-brands/sendcloud-shipping-api)[ Packagist](https://packagist.org/packages/harm-smits/sendcloud-shipping-api)[ Docs](http://github.com/harm-smits/sendcloud-shipping-api)[ RSS](/packages/harm-smits-sendcloud-shipping-api/feed)WikiDiscussions master Synced today

READMEChangelog (10)Dependencies (1)Versions (22)Used By (0)

A working API for a shitty API
==============================

[](#a-working-api-for-a-shitty-api)

A simple API that supports almost all calls and which is mapped to objects accordingly.

Initialize the client as follows and work with the api
------------------------------------------------------

[](#initialize-the-client-as-follows-and-work-with-the-api)

```
$client = new \HarmSmits\SendCloudClient\Client(
    "...",
    "..."
);
```

Going over all parcels is really easy:

```
$cursor = null;
while (($result = $client->getParcels($cursor))) {
    $cursor = $result->getNext();
    foreach ($result->getParcels() as $parcel) {
        ...
    }
}
```

Statuses work likewise:

```
foreach ($client->getParcelStatuses() as $parcelStatus) {
    ...
}
```

Same for brands:

```
$cursor = null;
while (($result = $client->getBrands($cursor))) {
    $cursor = $result->getNext();
    foreach ($result->getBrands() as $brand) {
        ...
    }
}
```

Everything can be done asynchronously as well

```
$promise = $client->asyncGetParcelStatuses();
...
$result = $promise->wait();
```

The following methods can be used directly from the client, suffix with `Async` if you want to get a promise.
-------------------------------------------------------------------------------------------------------------

[](#the-following-methods-can-be-used-directly-from-the-client-suffix-with-async-if-you-want-to-get-a-promise)

- getParcels
- getParcel
- createParcel
- createParcels
- updateParcel
- cancelOrDeleteParcel
- getParcelReturnPortalUrl
- getParcelDocuments
- getParcelStatuses
- getReturns
- getReturn
- getBrands
- getBrand
- getShippingMethods
- getShippingMethod
- getPdfLabel
- getBulkPdfLabel
- getUser
- getInvoices
- getInvoice
- getSenderAddresses
- getSenderAddress
- getIntegrations

###  Health Score

29

—

LowBetter than 57% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity65

Established project with proven stability

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

Total

19

Last Release

1671d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/804f781d16e8972d9023d22caa930c6d7cc7f6df88e183e988b3061859674b4e?d=identicon)[HarmSmits](/maintainers/HarmSmits)

---

Top Contributors

[![harm-smits](https://avatars.githubusercontent.com/u/42849121?v=4)](https://github.com/harm-smits "harm-smits (19 commits)")

---

Tags

api-clientsendcloudsendcloud-apisendcloud

### Embed Badge

![Health badge](/badges/harm-smits-sendcloud-shipping-api/health.svg)

```
[![Health](https://phpackages.com/badges/harm-smits-sendcloud-shipping-api/health.svg)](https://phpackages.com/packages/harm-smits-sendcloud-shipping-api)
```

###  Alternatives

[statamic/cms

The Statamic CMS Core Package

4.8k3.6M985](/packages/statamic-cms)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3741.3M47](/packages/tencentcloud-tencentcloud-sdk-php)[neuron-core/neuron-ai

The PHP Agentic Framework.

2.0k656.1k38](/packages/neuron-core-neuron-ai)[avalara/avataxclient

Client library for Avalara's AvaTax suite of business tax calculation and processing services. Uses the REST v2 API.

528.5M7](/packages/avalara-avataxclient)[eslazarev/wildberries-sdk

Wildberries OpenAPI clients (generated).

273.0k](/packages/eslazarev-wildberries-sdk)[files.com/files-php-sdk

Files.com PHP SDK

2481.1k](/packages/filescom-files-php-sdk)

PHPackages © 2026

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