Convert USD to PHP
US Dollar → Philippine Peso
1 USD = 62.478295 PHP(1 PHP = 0.0160056 USD)
Currency converter
1 USD =
62.4783 PHP
USD to PHP: last 30 days
Over the last 30 days, 1 USD traded between 62.254 and 62.868 PHP, averaging 62.5911 PHP. The USD/PHP rate is up 0.36% since 2026-08-28.
- 30-day high
- 62.868
- 2026-09-14
- 30-day low
- 62.254
- 2026-08-28
- 30-day average
- 62.5911
- Days with data: 30
- 30-day change
- +0.36%
- since 2026-08-28
62.868
62.2542026-08-28 → 2026-09-26
| Date | 1 USD in PHP | Daily change |
|---|---|---|
| 2026-09-26 | 62.4783 | 0.00% |
| 2026-09-25 | 62.4783 | -0.43% |
| 2026-09-24 | 62.7501 | +0.33% |
| 2026-09-23 | 62.5458 | +0.13% |
| 2026-09-22 | 62.464 | -0.53% |
| 2026-09-21 | 62.795 | -0.01% |
| 2026-09-20 | 62.803 | 0.00% |
| 2026-09-19 | 62.803 | 0.00% |
| 2026-09-18 | 62.803 | +0.14% |
| 2026-09-17 | 62.718 | -0.02% |
| 2026-09-16 | 62.729 | -0.12% |
| 2026-09-15 | 62.802 | -0.10% |
| 2026-09-14 | 62.868 | +0.38% |
| 2026-09-13 | 62.629 | 0.00% |
| 2026-09-12 | 62.629 | 0.00% |
| Date | 1 USD in PHP | Daily change |
|---|---|---|
| 2026-09-11 | 62.629 | +0.08% |
| 2026-09-10 | 62.576 | +0.14% |
| 2026-09-09 | 62.491 | -0.03% |
| 2026-09-08 | 62.508 | -0.21% |
| 2026-09-07 | 62.641 | -0.01% |
| 2026-09-06 | 62.65 | 0.00% |
| 2026-09-05 | 62.65 | 0.00% |
| 2026-09-04 | 62.65 | +0.22% |
| 2026-09-03 | 62.51 | -0.06% |
| 2026-09-02 | 62.545 | +0.19% |
| 2026-09-01 | 62.429 | +0.05% |
| 2026-08-31 | 62.397 | +0.23% |
| 2026-08-30 | 62.254 | 0.00% |
| 2026-08-29 | 62.254 | 0.00% |
| 2026-08-28 | 62.254 | — |
USD to PHP conversion table
1 USD62.4783 PHP
5 USD312.3915 PHP
10 USD624.783 PHP
25 USD1,561.9574 PHP
50 USD3,123.9148 PHP
100 USD6,247.8295 PHP
500 USD31,239.148 PHP
1,000 USD62,478.295 PHP
5,000 USD312,391.48 PHP
10,000 USD624,782.95 PHP
Get the USD/PHP rate in your app
One GET request returns the latest USD → PHP rate as JSON. Send your API key in the Authorization header.
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://rate-api.com/api/v1/pair/USD/PHP"fetch('https://rate-api.com/api/v1/pair/USD/PHP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} PHP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/PHP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} PHP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/PHP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 USD = {$data['rate']} PHP\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "PHP"
},
"rate": 62.4783,
"timestamp": 1790447423,
"date": "2026-09-26"
}Replace YOUR_API_KEY with a key from your dashboard. The same key also works in the URL path or an X-API-Key header.
Get your free API key
Free plan: 2,500 requests a month, no credit card. Upgrade any time for conversion, historical rates and higher limits.
Related conversions
PHP to USDPhilippine Peso → US Dollar0.016006Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.