PHP SDK for the YEB VAT API. Calculate VAT, list countries and get tax rates.
Works standalone (plain PHP) or with Laravel (Facade + auto-discovery).
- PHP 8.1+
- cURL extension
- YEB API Key (free tier available)
composer require yebto/vat-apiuse Yebto\VatAPI\VatAPI;
$api = new VatAPI(['key' => 'your-api-key']);
$result = $api->calculate(100, 'example');Add your API key to .env:
YEB_KEY_ID=your-api-key
Use via Facade:
use VatAPI;
$result = VatAPI::calculate(100, 'example');Or via dependency injection:
use Yebto\VatAPI\VatAPI;
public function handle(VatAPI $api)
{
$result = $api->calculate(100, 'example');
}php artisan vendor:publish --tag=yebto-vat-config| Method | Description |
|---|---|
calculate($amount, $country) |
Calculate VAT for an amount |
listCountries() |
List countries with VAT rates |
countryProfile($country) |
Get detailed VAT profile for a country |
countryRates($country) |
Get VAT rates for a country |
All methods accept an optional $extra array parameter for additional API options.
use Yebto\ApiClient\Exceptions\ApiException;
use Yebto\ApiClient\Exceptions\AuthenticationException;
use Yebto\ApiClient\Exceptions\RateLimitException;
try {
$result = $api->calculate(100, 'example');
} catch (AuthenticationException $e) {
// Missing or invalid API key (401)
} catch (RateLimitException $e) {
// Too many requests (429)
} catch (ApiException $e) {
echo $e->getMessage();
echo $e->getHttpCode();
}Register at yeb.to with Google OAuth to get a free API key.
- API Documentation: https://yeb.to/api/vat
- Email: support@yeb.to
- Issues: GitHub Issues
MIT - NETOX Ltd.