Dólar Mayorista
GET
https://dolarapi.com/v1/dolares/mayoristaCotización del dólar estadounidense en el mercado mayorista. Es decir, el precio de compra y venta de dólares en el mercado interbancario.
Respuestas
Devuelve la cotización del Dólar Mayorista
JSON
{
"compra": 0,
"venta": 0,
"casa": "string",
"nombre": "string",
"moneda": "string",
"fechaActualizacion": "string"
}
cURL
curl -X GET \
'https://dolarapi.com/v1/dolares/mayorista'
Ejemplos
cURL
curl -X GET https://dolarapi.com/v1/dolares/mayorista
JavaScript
fetch("https://dolarapi.com/v1/dolares/mayorista")
.then(response => response.json())
.then(data => console.log(data));
PHP
file_get_contents("https://dolarapi.com/v1/dolares/mayorista");
Python
import requests
response = requests.get("https://dolarapi.com/v1/dolares/mayorista")
print(response.json())