PHPackages                             orb-apimatic/orb-apiamtic-sdk - 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. orb-apimatic/orb-apiamtic-sdk

ActiveLibrary

orb-apimatic/orb-apiamtic-sdk
=============================

Sample SDKs for ORB by APIMatic

0.0.1(1mo ago)01MITPHPPHP ^7.2 || ^8.0

Since Jul 14Pushed 1mo agoCompare

[ Source](https://github.com/sdks-io/orb-apiamtic-php-sdk)[ Packagist](https://packagist.org/packages/orb-apimatic/orb-apiamtic-sdk)[ Docs](https://docs.withorb.com/overview)[ RSS](/packages/orb-apimatic-orb-apiamtic-sdk/feed)WikiDiscussions main Synced 1w ago

READMEChangelogDependencies (5)Versions (2)Used By (0)

Getting Started with API Reference
==================================

[](#getting-started-with-api-reference)

Introduction
------------

[](#introduction)

Orb's API is built with the following principles in mind:

1. **Predictable developer experience**: Where applicable, the Orb API uses industry-standard patterns such as cursor-based pagination and standardized error output. To help with debugging in critical API actions, the API always strives to provide detailed and actionable error messages. Aliases such as external customer IDs aid in fast integration times.
2. **Reliably real time**: Orb's event-based APIs, such as event ingestion are designed to handle extremely high throughput and scale with concurrent load. Orb also provides a real-time event-level credits ledger and a highly performant webhooks architecture.
3. **Flexibility at the forefront**: Features like timezone localization and the ability to amend historical usage show the flexible nature of the platform.

You can download the latest OpenAPI spec [here](https://api.withorb.com/spec.json) - pass `?version=3.0` for an OpenAPI 3.0-compatible spec.

Install the Package
-------------------

[](#install-the-package)

Run the following command to install the package and automatically add the dependency to your composer.json file:

```
composer require "orb-apimatic/orb-apiamtic-sdk:0.0.1"
```

Or add it to the composer.json file manually as given below:

```
"require": {
    "orb-apimatic/orb-apiamtic-sdk": "0.0.1"
}
```

You can also view the package at:

Initialize the API Client
-------------------------

[](#initialize-the-api-client)

***Note:*** Documentation for the client can be found [here.](https://www.github.com/sdks-io/orb-apiamtic-php-sdk/tree/0.0.1/doc/client.md)

The following parameters are configurable for the API Client:

ParameterTypeDescriptiontimeout`int`Timeout for API calls in seconds.
*Default*: `0`enableRetries`bool`Whether to enable retries and backoff feature.
*Default*: `false`numberOfRetries`int`The number of retries to make.
*Default*: `0`retryInterval`float`The retry time interval between the endpoint calls.
*Default*: `1`backOffFactor`float`Exponential backoff factor to increase interval between retries.
*Default*: `2`maximumRetryWaitTime`int`The maximum wait time in seconds for overall retrying requests.
*Default*: `0`retryOnTimeout`bool`Whether to retry on request timeout.
*Default*: `true`httpStatusCodesToRetry`array`Http status codes to retry against.
*Default*: `408, 413, 429, 500, 502, 503, 504, 521, 522, 524`httpMethodsToRetry`array`Http methods to retry against.
*Default*: `'GET', 'PUT'`loggingConfiguration[`LoggingConfigurationBuilder`](https://www.github.com/sdks-io/orb-apiamtic-php-sdk/tree/0.0.1/doc/logging-configuration-builder.md)Represents the logging configurations for API callsproxyConfiguration[`ProxyConfigurationBuilder`](https://www.github.com/sdks-io/orb-apiamtic-php-sdk/tree/0.0.1/doc/proxy-configuration-builder.md)Represents the proxy configurations for API callsbearerAuthCredentials[`BearerAuthCredentials`](https://www.github.com/sdks-io/orb-apiamtic-php-sdk/tree/0.0.1/doc/auth/oauth-2-bearer-token.md)The Credentials Setter for OAuth 2 Bearer tokenThe API client can be initialized as follows:

```
use ApiReferenceLib\Logging\LoggingConfigurationBuilder;
use ApiReferenceLib\Logging\RequestLoggingConfigurationBuilder;
use ApiReferenceLib\Logging\ResponseLoggingConfigurationBuilder;
use Psr\Log\LogLevel;
use ApiReferenceLib\Authentication\BearerAuthCredentialsBuilder;
use ApiReferenceLib\ApiReferenceClientBuilder;

$client = ApiReferenceClientBuilder::init()
    ->bearerAuthCredentials(
        BearerAuthCredentialsBuilder::init(
            'AccessToken'
        )
    )
    ->loggingConfiguration(
        LoggingConfigurationBuilder::init()
            ->level(LogLevel::INFO)
            ->requestConfiguration(RequestLoggingConfigurationBuilder::init()->body(true))
            ->responseConfiguration(ResponseLoggingConfigurationBuilder::init()->headers(true))
    )
    ->build();
```

Authorization
-------------

[](#authorization)

This API uses the following authentication schemes.

- [`APIKeyAuth (OAuth 2 Bearer token)`](https://www.github.com/sdks-io/orb-apiamtic-php-sdk/tree/0.0.1/doc/auth/oauth-2-bearer-token.md)

List of APIs
------------

[](#list-of-apis)

- [Creditnote](https://www.github.com/sdks-io/orb-apiamtic-php-sdk/tree/0.0.1/doc/controllers/creditnote.md)
- [Dimensional Price Group](https://www.github.com/sdks-io/orb-apiamtic-php-sdk/tree/0.0.1/doc/controllers/dimensional-price-group.md)
- [Priceinterval](https://www.github.com/sdks-io/orb-apiamtic-php-sdk/tree/0.0.1/doc/controllers/priceinterval.md)
- [Subscription Change](https://www.github.com/sdks-io/orb-apiamtic-php-sdk/tree/0.0.1/doc/controllers/subscription-change.md)
- [Alert](https://www.github.com/sdks-io/orb-apiamtic-php-sdk/tree/0.0.1/doc/controllers/alert.md)
- [Availability](https://www.github.com/sdks-io/orb-apiamtic-php-sdk/tree/0.0.1/doc/controllers/availability.md)
- [Coupon](https://www.github.com/sdks-io/orb-apiamtic-php-sdk/tree/0.0.1/doc/controllers/coupon.md)
- [Credit](https://www.github.com/sdks-io/orb-apiamtic-php-sdk/tree/0.0.1/doc/controllers/credit.md)
- [Customer](https://www.github.com/sdks-io/orb-apiamtic-php-sdk/tree/0.0.1/doc/controllers/customer.md)
- [Event](https://www.github.com/sdks-io/orb-apiamtic-php-sdk/tree/0.0.1/doc/controllers/event.md)
- [Invoice](https://www.github.com/sdks-io/orb-apiamtic-php-sdk/tree/0.0.1/doc/controllers/invoice.md)
- [Item](https://www.github.com/sdks-io/orb-apiamtic-php-sdk/tree/0.0.1/doc/controllers/item.md)
- [License](https://www.github.com/sdks-io/orb-apiamtic-php-sdk/tree/0.0.1/doc/controllers/license.md)
- [License Type](https://www.github.com/sdks-io/orb-apiamtic-php-sdk/tree/0.0.1/doc/controllers/license-type.md)
- [Metric](https://www.github.com/sdks-io/orb-apiamtic-php-sdk/tree/0.0.1/doc/controllers/metric.md)
- [Plan](https://www.github.com/sdks-io/orb-apiamtic-php-sdk/tree/0.0.1/doc/controllers/plan.md)
- [Price](https://www.github.com/sdks-io/orb-apiamtic-php-sdk/tree/0.0.1/doc/controllers/price.md)
- [Subscription](https://www.github.com/sdks-io/orb-apiamtic-php-sdk/tree/0.0.1/doc/controllers/subscription.md)

SDK Infrastructure
------------------

[](#sdk-infrastructure)

### Configuration

[](#configuration)

- [ProxyConfigurationBuilder](https://www.github.com/sdks-io/orb-apiamtic-php-sdk/tree/0.0.1/doc/proxy-configuration-builder.md)
- [LoggingConfigurationBuilder](https://www.github.com/sdks-io/orb-apiamtic-php-sdk/tree/0.0.1/doc/logging-configuration-builder.md)
- [RequestLoggingConfigurationBuilder](https://www.github.com/sdks-io/orb-apiamtic-php-sdk/tree/0.0.1/doc/request-logging-configuration-builder.md)
- [ResponseLoggingConfigurationBuilder](https://www.github.com/sdks-io/orb-apiamtic-php-sdk/tree/0.0.1/doc/response-logging-configuration-builder.md)

### HTTP

[](#http)

- [HttpRequest](https://www.github.com/sdks-io/orb-apiamtic-php-sdk/tree/0.0.1/doc/http-request.md)

### Utilities

[](#utilities)

- [ApiResponse](https://www.github.com/sdks-io/orb-apiamtic-php-sdk/tree/0.0.1/doc/api-response.md)

###  Health Score

32

—

LowBetter than 69% of packages

Maintenance90

Actively maintained with recent releases

Popularity1

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity28

Early-stage or recently created project

 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

Unknown

Total

1

Last Release

47d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/ef06f97b4ff5db714f2a124525216538f97338487cd4e2bca22baa32c0bf90cd?d=identicon)[developer-sdksio](/maintainers/developer-sdksio)

---

Top Contributors

[![developer-sdksio](https://avatars.githubusercontent.com/u/135820708?v=4)](https://github.com/developer-sdksio "developer-sdksio (1 commits)")

###  Code Quality

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/orb-apimatic-orb-apiamtic-sdk/health.svg)

```
[![Health](https://phpackages.com/badges/orb-apimatic-orb-apiamtic-sdk/health.svg)](https://phpackages.com/packages/orb-apimatic-orb-apiamtic-sdk)
```

###  Alternatives

[square/square

Use Square APIs to manage and run business including payment, customer, product, inventory, and employee management.

794.2M33](/packages/square-square)[paypal/paypal-server-sdk

PayPal's SDK for interacting with the REST APIs

651.1M22](/packages/paypal-paypal-server-sdk)[pagarme/pagarme-php-sdk

Pagarme API

11196.8k](/packages/pagarme-pagarme-php-sdk)

PHPackages © 2026

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