PHPackages                             seatplus/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. seatplus/api

ActiveLibrary[API Development](/categories/api)

seatplus/api
============

Package to consume seatplus data trough an api

1.0.0(4y ago)034[1 PRs](https://github.com/seatplus/api/pulls)MITPHPPHP ^8.1

Since Aug 16Pushed 4y ago1 watchersCompare

[ Source](https://github.com/seatplus/api)[ Packagist](https://packagist.org/packages/seatplus/api)[ Docs](https://github.com/seatplus/api)[ GitHub Sponsors](https://github.com/seatplus)[ RSS](/packages/seatplus-api/feed)WikiDiscussions main Synced 1w ago

READMEChangelog (8)Dependencies (5)Versions (11)Used By (0)

Package to consume seatplus data trough an api
==============================================

[](#package-to-consume-seatplus-data-trough-an-api)

[![Latest Version on Packagist](https://camo.githubusercontent.com/476b367b216042f06750b8461fc3d0f5be0dc9cacc5522a29ef159b5bc56f137/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f73656174706c75732f6170692e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/seatplus/api)[![GitHub Tests Action Status](https://camo.githubusercontent.com/8a3796a61813301a67c99aebd27634c6819b8d731d8d7eaaf9ba97eb5d8130e5/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f73656174706c75732f6170692f72756e2d74657374733f6c6162656c3d7465737473)](https://github.com/seatplus/api/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/b206436deba140d2177a2cf0216de9cb77cb015982ca2f5f2c1d08adfdfc7785/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f73656174706c75732f6170692f436865636b253230262532306669782532307374796c696e673f6c6162656c3d636f64652532307374796c65)](https://github.com/seatplus/api/actions?query=workflow%3A%22Check+%26+fix+styling%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/ae2042c8d5361fc26631a2396c8ba5d6c2e1ce5eb40771a8b92e5f1740390523/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f73656174706c75732f6170692e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/seatplus/api)

Installation
------------

[](#installation)

Usage
-----

[](#usage)

There are several ways of passing the API token to your application. We'll discuss each of these approaches while using the Guzzle HTTP library to demonstrate their usage. You may choose any of these approaches based on the needs of your application.

### Query Strings

[](#query-strings)

Your application's API consumers may specify their token as an `api_token` query string value:

```
$response = $client->request('GET', '/api/user?api_token='.$token);
```

### Request Payload

[](#request-payload)

Your application's API consumers may include their API token in the request's form parameters as an `api_token`:

```
$response = $client->request('POST', '/api/user', [
    'headers' => [
        'Accept' => 'application/json',
    ],
    'form_params' => [
        'api_token' => $token,
    ],
]);
```

### Bearer Token

[](#bearer-token)

Your application's API consumers may provide their API token as a `Bearer` token in the `Authorization` header of the request:

```
$response = $client->request('POST', '/api/user', [
    'headers' => [
        'Authorization' => 'Bearer '.$token,
        'Accept' => 'application/json',
    ],
]);
```

Documentation
-------------

[](#documentation)

[![Run in Postman](https://camo.githubusercontent.com/82ccefddb001e2caf9d399f1153fdda561cf3da341bb270e18644d516906bc64/68747470733a2f2f72756e2e7073746d6e2e696f2f627574746f6e2e737667)](https://app.getpostman.com/run-collection/13012975-234f6f65-12e0-4d5b-ae35-a6e0d17ffc91?action=collection%2Ffork&collection-url=entityId%3D13012975-234f6f65-12e0-4d5b-ae35-a6e0d17ffc91%26entityType%3Dcollection%26workspaceId%3D99c4cf22-1a90-4315-91cf-3899990b05c7)

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Felix Huber](https://github.com/herpaderpaldent)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity66

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

Recently: every ~53 days

Total

8

Last Release

1521d ago

Major Versions

0.1.6 → 1.0.02022-03-19

PHP version history (2 changes)0.1.0PHP ^8.0

1.0.0PHP ^8.1

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/6583519?v=4)[Herpaderp Aldent](/maintainers/herpaderpaldent)[@herpaderpaldent](https://github.com/herpaderpaldent)

---

Top Contributors

[![herpaderpaldent](https://avatars.githubusercontent.com/u/6583519?v=4)](https://github.com/herpaderpaldent "herpaderpaldent (31 commits)")

---

Tags

apilaravelseatplus

### Embed Badge

![Health badge](/badges/seatplus-api/health.svg)

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

###  Alternatives

[aimeos/aimeos-headless

Aimeos headless ecommerce system

2.5k2.3k](/packages/aimeos-aimeos-headless)[rupadana/filament-api-service

A simple api service for supporting filamentphp

204103.8k7](/packages/rupadana-filament-api-service)

PHPackages © 2026

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