PHPackages                             gbanina/coinbase-pro - 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. gbanina/coinbase-pro

ActiveLibrary[API Development](/categories/api)

gbanina/coinbase-pro
====================

Client library for the Coinbase Pro. Intuitive and stable interface to integrate Coinbase Market into your Laravel project.

215PHP

Since Oct 5Pushed 4y ago1 watchersCompare

[ Source](https://github.com/gbanina/coinbase-pro)[ Packagist](https://packagist.org/packages/gbanina/coinbase-pro)[ RSS](/packages/gbanina-coinbase-pro/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependenciesVersions (1)Used By (0)

Coinbase Pro API Laravel Library
================================

[](#coinbase-pro-api-laravel-library)

This is the client library for the [Coinbase Pro API](https://docs.pro.coinbase.com/). We provide an intuitive, stable interface to integrate Coinbase Pro into your Laravel project.

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

[](#installation)

Install the library using Composer. Please read the [Composer Documentation](https://getcomposer.org/doc/01-basic-usage.md) if you are unfamiliar with Composer or dependency managers in general.

```
composer require gbanina/coinbase-pro
```

Once installed, if you are not using automatic package discovery, then you need to register the `Gbanina\CoinbasePro\CoinbaseProServiceProvider` in your `config/app.php`.

```
    'providers' => [
            Gbanina\CoinbasePro\CoinbaseProServiceProvider::class,
        ],

```

You can also optionally alias our facade:

```
'CoinbasePro' => Gbanina\CoinbasePro\CoinbasePro::class,
```

Copy the package config to your local config with the publish command:

```
php artisan vendor:publish --provider="Gbanina\CoinbasePro\CoinbaseProServiceProvider"

```

Authentication
--------------

[](#authentication)

You need to add the following to your `.env` file:

```
COINBASEPRO_KEY=
COINBASEPRO_SECRET=
COINBASEPRO_PASSPHRASE=

```

Usage
-----

[](#usage)

This is not intended to provide complete documentation of the API. For more detail, please refer to the [official documentation](https://docs.pro.coinbase.com).

### Orders

[](#orders)

List your current open orders. Only open or un-settled orders are returned. As soon as an order is no longer open and settled, it will no longer appear in the default request.

```
$service = new CoinbasePro();
$orders = $service->getOrders();
```

### Accounts

[](#accounts)

Get a list of trading accounts.

```
$service = new CoinbasePro();
$accounts = $service->getAccounts();
```

### Products

[](#products)

Get a list of available currency pairs for trading.

```
$service = new CoinbasePro();
$products = $service->getProducts();
```

### Currencies

[](#currencies)

List known currencies.

```
$service = new CoinbasePro();
$currencies = $service->getCurrencies();
```

---

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

[](#contributing)

Feel free to submit pull requests, fix any bugs, or add missing functions.

###  Health Score

17

—

LowBetter than 6% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community7

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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/35c0ed547e588ae217213fa999dd4f9b46ba6b04f55043a58beae88e61a3ec53?d=identicon)[gbanina](/maintainers/gbanina)

---

Top Contributors

[![gbanina](https://avatars.githubusercontent.com/u/4973303?v=4)](https://github.com/gbanina "gbanina (6 commits)")

### Embed Badge

![Health badge](/badges/gbanina-coinbase-pro/health.svg)

```
[![Health](https://phpackages.com/badges/gbanina-coinbase-pro/health.svg)](https://phpackages.com/packages/gbanina-coinbase-pro)
```

###  Alternatives

[stripe/stripe-php

Stripe PHP Library

4.0k143.3M480](/packages/stripe-stripe-php)[twilio/sdk

A PHP wrapper for Twilio's API

1.6k92.9M272](/packages/twilio-sdk)[knplabs/github-api

GitHub API v3 client

2.2k15.8M187](/packages/knplabs-github-api)[facebook/php-business-sdk

PHP SDK for Facebook Business

90121.9M34](/packages/facebook-php-business-sdk)[meilisearch/meilisearch-php

PHP wrapper for the Meilisearch API

73813.7M114](/packages/meilisearch-meilisearch-php)[google/gax

Google API Core for PHP

263103.1M454](/packages/google-gax)

PHPackages © 2026

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