Convertir valor
GET
/api/v1/{currency}/conversion
Convierte un valor en bolívares a su equivalente a estas monedas extranjeras y viceversa.
Parámetros
Path Parameters
currency*
La moneda en la que se expresarán los precios (dollar, euro).
Tipostring
RequeridoEnum
dollar
euro
Ejemplo
dollar
Query Parameters
type*
El tipo de conversión. Puede ser (VES, USD, EUR).
Tipostring
RequeridoEnum
VES
USD
EUR
Ejemplo
VES
value*
El valor a convertir.
Tiponumber
Requeridopage*
La página de la que se quiere obtener la información.
Tipostring
RequeridoEnum
alcambio
bcv
criptodolar
dolartoday
enparalelovzla
italcambio
Ejemplo
bcv
monitor*
El monitor específico del que se quiere obtener la información.
Tipostring
RequeridoRespuestas
La información de los monitores de la página.
application/json
JSON
0
GET
/api/v1/{currency}/conversion
Ejemplos
cURL
curl -X GET \
'https://pydolarve.org/api/v1/dollar/conversion?type=VES&page=bcv' \
-H "Content-Type: application/json"
JavaScript
fetch('https://pydolarve.org/api/v1/dollar/conversion?type=VES&page=bcv', {headers:{'Content-Type':'application/json'}})
.then(response => response.json())
.then(data => console.log(data));
PHP
<?php
$url = 'https://pydolarve.org/api/v1/dollar/conversion';
$method = 'GET';
$headers = [
'Content-Type' => 'application/json',
];
$query = http_build_query([
'type' => 'VES',
'page' => 'bcv',
]);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url . '?' . $query);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
Python
import requests
url = 'https://pydolarve.org/api/v1/dollar/conversion'
params = {
'type': 'VES',
'page': 'bcv'
}
headers = {
'Content-Type': 'application/json'
}
response = requests.get(url, params=params, headers=headers)
print(response.json())