Real Brasileño
GET
https://dolarapi.com/v1/cotizaciones/brlCotización del Real Brasileño en el mercado.
Respuestas
Devuelve la cotización del Real Brasileño
JSON
{
"compra": 0,
"venta": 0,
"casa": "string",
"nombre": "string",
"moneda": "string",
"fechaActualizacion": "string"
}
Ejemplos
cURL
curl -X GET https://dolarapi.com/v1/cotizaciones/brl
JavaScript
fetch("https://dolarapi.com/v1/cotizaciones/brl")
.then(response => response.json())
.then(data => console.log(data));
PHP
file_get_contents("https://dolarapi.com/v1/cotizaciones/brl");
Python
import requests
response = requests.get("https://dolarapi.com/v1/cotizaciones/brl")
print(response.json())