aure-ex / sdk
SDK oficial da API AureEX para PHP (tipado via OpenAPI)
v0.1.2
2026-07-15 05:34 UTC
Requires
- php: >=8.1
- ext-curl: *
- ext-json: *
- guzzlehttp/guzzle: ^7.8
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
README
SDK oficial da API AureEX para PHP.
Instalação
composer require aure-ex/sdk
Uso
<?php use AureEx\AureEx; $aureEx = new AureEx([ 'apiKey' => getenv('AUREEX_API_KEY'), 'apiSecret' => getenv('AUREEX_API_SECRET'), ]); $aureEx->deposits->create([ 'method' => 'usdt', 'reference' => 'order-1', 'amount' => 10000, ]); $aureEx->webhooks->list(); $aureEx->company->balance(); $aureEx->conversions->quote(['from' => 'USDT', 'to' => 'BRL', 'amount' => 100]);
Mapa de métodos
| SDK | HTTP |
|---|---|
$aureEx->deposits |
/v1/deposits |
$aureEx->withdrawals |
/v1/withdrawals |
$aureEx->webhooks |
/v1/webhooks |
$aureEx->company->get() / balance() |
/v1/company, /v1/company/balance |
$aureEx->conversions / quote() |
/v1/conversions, /v1/conversions/quote |
Docs: https://api.aure-ex.com/docs/sdks
OpenAPI: https://api.aure-ex.com/openapi.yaml