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