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