Tasas de cambio BCV
curl --request GET \
--url https://api.venepagos.com.ve/api/v1/bank/ratesimport requests
url = "https://api.venepagos.com.ve/api/v1/bank/rates"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.venepagos.com.ve/api/v1/bank/rates', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.venepagos.com.ve/api/v1/bank/rates",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.venepagos.com.ve/api/v1/bank/rates"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.venepagos.com.ve/api/v1/bank/rates")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.venepagos.com.ve/api/v1/bank/rates")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"usd": 78.35,
"eur": 85.12,
"updatedAt": "2026-03-31T12:00:00Z"
}
Operaciones Bancarias
Tasas de cambio BCV
Obtiene las tasas de cambio oficiales publicadas por el Banco Central de Venezuela (BCV).
GET
/
api
/
v1
/
bank
/
rates
Tasas de cambio BCV
curl --request GET \
--url https://api.venepagos.com.ve/api/v1/bank/ratesimport requests
url = "https://api.venepagos.com.ve/api/v1/bank/rates"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.venepagos.com.ve/api/v1/bank/rates', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.venepagos.com.ve/api/v1/bank/rates",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.venepagos.com.ve/api/v1/bank/rates"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.venepagos.com.ve/api/v1/bank/rates")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.venepagos.com.ve/api/v1/bank/rates")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"usd": 78.35,
"eur": 85.12,
"updatedAt": "2026-03-31T12:00:00Z"
}
Este endpoint requiere autenticación mediante Bearer token.
Respuesta
number
Tasa de cambio del dólar estadounidense en bolívares.
number
Tasa de cambio del euro en bolívares.
string
Fecha y hora de la última actualización en formato ISO 8601.
{
"usd": 78.35,
"eur": 85.12,
"updatedAt": "2026-03-31T12:00:00Z"
}
⌘I