RESTful API to obtain BCV currency values directly from the website (http://www.bcv.org.ve/).
$ git clone https://github.com/adrianolmedo/bcvcurs.git
$ go install .
$ bcvcurs -addr localhost -port 8080
$ git clone https://github.com/adrianolmedo/bcvcurs.git
$ make
Note: make
by default runs the target defined in the .DEFAULT_GOAL
variable of the Makefile
.
GET: /v1
Response (200 OK):
{
"data": {
"dollar": {
"iso": "USD",
"symbol": "$",
"value": 4.4032
},
"euro": {
"iso": "EUR",
"symbol": "€",
"value": 5.00608614
},
"lira": {
"iso": "TRY",
"symbol": "₺",
"value": 0.3234693
},
"ruble": {
"iso": "RUB",
"symbol": "₽",
"value": 0.05774612
},
"yuan": {
"iso": "CNY",
"symbol": "¥",
"value": 0.694785
}
},
"message_ok": {
"content": ""
}
}
GET: /v1/euro
Response (200 OK):
{
"data": {
"iso": "EUR",
"symbol": "€",
"value": 5.04244811
},
"message_ok": {
"content": ""
}
}
GET: /v1/yuan
Response (200 OK):
{
"data": {
"iso": "CNY",
"symbol": "¥",
"value": 0.7005779
},
"message_ok": {
"content": ""
}
}
GET: /v1/lira
Response (200 OK):
{
"data": {
"iso": "TRY",
"symbol": "₺",
"value": 0.3255186
},
"message_ok": {
"content": ""
}
}
GET: /v1/ruble
Response (200 OK):
{
"data": {
"iso": "RUB",
"symbol": "₽",
"value": 0.05899348
},
"message_ok": {
"content": ""
}
}
GET: /v1/dollar
Response (200 OK):
{
"data": {
"iso": "USD",
"symbol": "$",
"value": 4.4369
},
"message_ok": {
"content": ""
}
}
Response (404 Not Found):
{
"message_error": {
"content": "path error"
}
}
Response (503 Service Unavailable):
{
"message_error": {
"content": "error getting data"
}
}