Skip to content

BTC/DAI

GET
/v1/exchanges/monedas/btc/dai

Cotizaciones de BTC a DAI.

Respuestas

Cotizaciones
application/json
JSON
[
{
"exchange": "string",
"compra": 0,
"venta": 0,
"moneda": "string",
"monedaBase": "string",
"criptomoneda": "string",
"fechaActualizacion": "string"
}
]

Playground

Ejemplos

cURL
curl https://dolarapi.com/v1/exchanges/monedas/btc/dai
JavaScript
fetch('https://dolarapi.com/v1/exchanges/monedas/btc/dai')
PHP
$ch = curl_init("https://dolarapi.com/v1/exchanges/monedas/btc/dai");

curl_exec($ch);

curl_close($ch);
Python
requests.get(
    "https://dolarapi.com/v1/exchanges/monedas/btc/dai"
)
Powered by VitePress OpenAPI