PHPackages                             kukulkan-popolvux/coinspaid-api-laravel - 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. kukulkan-popolvux/coinspaid-api-laravel

ActiveLibrary[API Development](/categories/api)

kukulkan-popolvux/coinspaid-api-laravel
=======================================

The package provides a convenient interface for interacting with the API (v2) for the service https://coinspaid.com

1.0.2(4y ago)227.1k↑123.3%2MITPHP

Since Jul 12Pushed 4y ago1 watchersCompare

[ Source](https://github.com/kukulkan-popolvux/coinspaid-api-laravel)[ Packagist](https://packagist.org/packages/kukulkan-popolvux/coinspaid-api-laravel)[ RSS](/packages/kukulkan-popolvux-coinspaid-api-laravel/feed)WikiDiscussions master Synced 3d ago

READMEChangelog (3)Dependencies (1)Versions (5)Used By (0)

coinspaid-api-laravel
=====================

[](#coinspaid-api-laravel)

The package provides a convenient interface for interacting with the API (v2) for the service [CoinsPaid](https://coinspaid.com/)

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

[](#installation)

### composer

[](#composer)

Use the package manager [composer](https://getcomposer.org/) to install coinspaid-api-laravel

```
composer require kukulkan-popolvux/coinspaid-api-laravel
```

---

### provider

[](#provider)

Add the ServiceProvider to the providers array in `config/app.php`

```
KukulkanPopolvux\CoinspaidApiLaravel\CoinspaidApiLaravelProvider::class,
```

---

### .env

[](#env)

To configure the connection to the [CoinsPaid](https://coinspaid.com/) service, and specify the development environment, you must use the following constants in the `.env` file

```
COINSPAID_API_KEY=
COINSPAID_SECRET_KEY=
COINSPAID_ENVIRONMENT=

```

#### Getting API key and secret key

[](#getting-api-key-and-secret-key)

> To obtain `COINSPAID_API_KEY` and `COINSPAID_SECRET_KEY`, you must perform the following steps, which are described in the [documentation](https://docs.cryptoprocessing.com/api-documentation/obtaining-api-keys)

---

#### Development environment

[](#development-environment)

> By default, the development environment is listed as production. You can select two values `test` and `prod`
> Example: `COINSPAID_ENVIRONMENT=test`

---

Constants `COINSPAID_DOMAIN_PROD` and `COINSPAID_DOMAIN_TEST`

> If desired, you can override the values of the domain names of the api of the conispide service using these constants, but this is not recommended.
> Unless the api domain names change in the server itself, and this library does not have time to make changes.
> Example: `COINSPAID_DOMAIN_PROD=https://app.cryptoprocessing.com/api/v2`
> Example: `COINSPAID_DOMAIN_TEST=https://app.sandbox.cryptoprocessing.com/api/v2`
> [documentation](https://docs.cryptoprocessing.com/api-documentation/api-reference#general-information)

---

### config

[](#config)

If you need a config file, you can use the following command.
The file will appear in the directory config with name coinspaid.php.
`config/coinspaid.php`

```
php artisan vendor:publish --provider="KukulkanPopolvux\CoinspaidApiLaravel\CoinspaidApiLaravelProvider"
```

---

Usage
-----

[](#usage)

You can use the library immediately after configuration without specifying any additional values.

#### Example:

[](#example)

```
\KukulkanPopolvux\CoinspaidApiLaravel\Coinspaid::ping()->getBody();
```

or

```
\KukulkanPopolvux\CoinspaidApiLaravel\Coinspaid::run()->getBody();
```

> The Response object is returned. Calling the `getBody()` method will return the response body
> The answer should return `OK`, it works without a secret key and an api key.
> This is just a test of the library connection and its interaction with the [CoinsPaid](https://coinspaid.com/) service.
> [documentation](https://docs.cryptoprocessing.com/api-documentation/api-reference#ping)

---

#### Example:

[](#example-1)

```
\KukulkanPopolvux\CoinspaidApiLaravel\Coinspaid::getListCurrencies()->getBodyObject();
```

or

```
\KukulkanPopolvux\CoinspaidApiLaravel\Coinspaid::getListCurrencies()->getBody(true);
```

> `getBodyObject()` will return the response body converted to object or you can use `getBody(true)` method with parameter `true`
> This example shows a method in which the values of the secret key and api key will already be required.
> Get a list of all supported currencies.
> [documentation](https://docs.cryptoprocessing.com/api-documentation/api-reference#get-list-of-supported-currencies)

---

#### Example:

[](#example-2)

```
\KukulkanPopolvux\CoinspaidApiLaravel\Coinspaid::getListCurrencies()->getData();
```

> Returns the `data` value from the request response.
> You can pass a parameter to a method `getData('currency')` that will return a value by the key that you passed as a parameter

---

License
-------

[](#license)

[MIT](https://choosealicense.com/licenses/mit/)

###  Health Score

32

—

LowBetter than 69% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity31

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

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

Total

3

Last Release

1814d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/e18ce69b077122e48577023205f9d73a422e0f6778feef024487997507a47864?d=identicon)[kukulkan-popolvux](/maintainers/kukulkan-popolvux)

---

Top Contributors

[![kukulkan-popolvux](https://avatars.githubusercontent.com/u/18314855?v=4)](https://github.com/kukulkan-popolvux "kukulkan-popolvux (21 commits)")

---

Tags

bitcoinblockchaincoinspaidcryptocurrencyphpapilaravelpackagebitcoincryptocurrencycoinspaid

### Embed Badge

![Health badge](/badges/kukulkan-popolvux-coinspaid-api-laravel/health.svg)

```
[![Health](https://phpackages.com/badges/kukulkan-popolvux-coinspaid-api-laravel/health.svg)](https://phpackages.com/packages/kukulkan-popolvux-coinspaid-api-laravel)
```

###  Alternatives

[openai-php/laravel

OpenAI PHP for Laravel is a supercharged PHP API client that allows you to interact with the Open AI API

3.7k9.5M89](/packages/openai-php-laravel)[resend/resend-php

Resend PHP library.

617.2M43](/packages/resend-resend-php)[mozex/anthropic-laravel

Laravel integration for the Anthropic API: facade, config publishing, install command, testing fakes, messages, streaming, tool use, thinking, and batches.

74331.3k1](/packages/mozex-anthropic-laravel)[eslazarev/wildberries-sdk

Wildberries OpenAPI clients (generated).

273.0k](/packages/eslazarev-wildberries-sdk)[joisarjignesh/bigbluebutton

BigBlueButton Server API Library for Laravel

162155.1k1](/packages/joisarjignesh-bigbluebutton)[scriptdevelop/whatsapp-manager

Paquete para manejo de WhatsApp Business API en Laravel

783.8k](/packages/scriptdevelop-whatsapp-manager)

PHPackages © 2026

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