Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/abdussamadyisau/currency-rates-api
Solution for this: https://www.notion.so/Phase-1-2-Back-end-15c3de53567348cbb06586c211446ba1
https://github.com/abdussamadyisau/currency-rates-api
Last synced: 9 days ago
JSON representation
Solution for this: https://www.notion.so/Phase-1-2-Back-end-15c3de53567348cbb06586c211446ba1
- Host: GitHub
- URL: https://github.com/abdussamadyisau/currency-rates-api
- Owner: AbdussamadYisau
- Created: 2021-01-11T09:56:05.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-01-15T00:14:16.000Z (almost 4 years ago)
- Last Synced: 2023-03-09T05:36:20.463Z (almost 2 years ago)
- Language: JavaScript
- Size: 89.8 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: ReadMe.md
Awesome Lists containing this project
README
# Enye Test API
This API serves as a service integration to a [public API](https://api.exchangeratesapi.io/latest) and exposing a RESTful endpoint. The endpoint will accept requests and returns a modified response schema from the integrated API.
## Query Example
```javascript
/api/rates?base=CZK¤cy=EUR,GBP,USD
```
### Response Example
```json
{
"results": {
"base": "CZK",
"date": "2020-11-17",
"rates": {
"EUR": 0.0377244605,
"GBP": 0.033795458,
"USD": 0.044824204
}
}
}```
#### Link to deployed API and screenshots
[Deployed here]( https://lit-lake-78126.herokuapp.com/)
![Screenshot of Website at work](https://github.com/AbdussamadYisau/EnyeTestAPI/blob/master/assets/Screenshot.png)