xratesapi/php-sdk
Composer 安装命令:
composer require xratesapi/php-sdk
包简介
Official PHP SDK for the XRates exchange rate API — multi-source FX rates with a single REST endpoint.
关键字:
README 文档
README
Official PHP client for the XRates exchange rate API. Multi-source FX rates aggregated from ECB, CBR, FloatRates, fawazahmed0 and IMF, served via a single REST endpoint.
- Documentation: https://xratesapi.com/docs
- Free tier: 100 requests/month, no credit card — sign up
- Status: https://xratesapi.com/status
Requirements
- PHP 8.1+
- Guzzle 7.5+ (or any PSR-compatible HTTP client)
Installation
composer require xratesapi/php-sdk
Quick start
use XRatesApi\Client; $client = new Client('YOUR_API_KEY'); // Latest rates: rates[T] = "X T per 1 base" $response = $client->latest('USD', ['EUR', 'GBP']); // ['base' => 'USD', 'rates' => ['EUR' => 0.864, 'GBP' => 0.79], ...] // Historical $response = $client->historical('2026-05-01', 'USD', ['EUR']); // Convert an amount $response = $client->convert('USD', 'EUR', 100.0); // ['from' => 'USD', 'to' => 'EUR', 'amount' => 100, 'result' => 86.4] // Time-series $response = $client->timeseries('2026-01-01', '2026-01-31', 'USD', ['EUR']); // Rate fluctuation $response = $client->fluctuation('2026-01-01', '2026-01-31', 'USD', ['EUR']); // Currencies $response = $client->currencies(); // Public status (no API key required, but the client sends one anyway) $response = $client->status();
Error handling
Every HTTP error maps to one of four exception types, all extending XRatesApi\Exceptions\ApiException:
| HTTP | Exception | When |
|---|---|---|
| 401 / 403 | AuthenticationException |
Missing or invalid API key |
| 422 | ValidationException |
Bad request parameters; ->payload() has the full error array |
| 429 | RateLimitException |
Hit the per-plan rate limit |
| other | ApiException |
Network errors, 5xx, unexpected responses |
use XRatesApi\Exceptions\RateLimitException; use XRatesApi\Exceptions\ApiException; try { $rates = $client->latest('USD', ['EUR']); } catch (RateLimitException $e) { // back off and retry } catch (ApiException $e) { // log and surface to caller error_log("XRates: " . $e->getMessage()); }
Custom HTTP client
The constructor accepts any \GuzzleHttp\ClientInterface, so you can plug in your own configured client (timeouts, retry middleware, proxy, etc.):
$guzzle = new \GuzzleHttp\Client([ 'timeout' => 5, 'connect_timeout' => 2, ]); $client = new Client('YOUR_API_KEY', $guzzle);
Custom base URL
Useful for tests or self-hosted deployments:
$client = new Client('YOUR_API_KEY', null, 'https://staging.xratesapi.com');
Versioning
This SDK follows semver. The Client::VERSION constant is sent in the User-Agent header on every request, which helps us debug integration issues if you contact support.
Contributing
PRs welcome. Run the tests:
composer install
composer test
License
MIT — see LICENSE file.
xratesapi/php-sdk 适用场景与选型建议
xratesapi/php-sdk 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 0 次下载、GitHub Stars 达 0, 最近一次更新时间为 2026 年 05 月 12 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「currency」 「fx」 「exchange-rate」 「currency-api」 「currency-conversion」 「exchange-rate-api」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 xratesapi/php-sdk 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 xratesapi/php-sdk 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 xratesapi/php-sdk 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A PHP API Wrapper to offer a unified programming interface for popular Currency Rate APIs.
grep foreign exchange reference rates from the ecb
Fixer.io data provider for Peso
TCMB Currenct Converter
Allows you to receive current exchange rates from various sources and convert them.
Immutable PHP currency converter that's data-agnostic.
统计信息
- 总下载量: 0
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 56
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-05-12