https://github.com/franjsco/bitcoinfees-php
A PHP package to fetch Bitcoin fee predictions from bitcoinfees.earn.com
https://github.com/franjsco/bitcoinfees-php
Last synced: 5 months ago
JSON representation
A PHP package to fetch Bitcoin fee predictions from bitcoinfees.earn.com
- Host: GitHub
- URL: https://github.com/franjsco/bitcoinfees-php
- Owner: franjsco
- License: gpl-2.0
- Created: 2021-10-19T19:38:42.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-10-19T21:25:40.000Z (over 4 years ago)
- Last Synced: 2025-05-27T00:50:14.510Z (about 1 year ago)
- Language: PHP
- Homepage: https://packagist.org/packages/franjsco/bitcoinfees
- Size: 12.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bitcoinfees-php
A PHP package to fetch Bitcoin fee predictions from bitcoinfees.earn.com
## Requirements
* PHP >= 7.2
* ext-json
## Installation
```bash
composer require franjsco/bitcoinfees
```
## Example
```php
use Franjsco\Bitcoinfees\Client;
$client = new Client();
$data = $client->getData();
```
Data example:
```php
[
"fastestFee" => "102",
"halfHourFee" => "102",
"hourFee" => "88"
]
```