Coins App API is a RESTful web service that provides access to a collection of coins of different countries. The API allows developers to retrieve coin data using GET requests with various search queries.
- npm
- node js
- express JS
- mysql
- nodemon
- cors
- dotenv
- body-parser
To use this API application, you will need to have Node.js and npm installed on your machine. Once you have those installed, you can run the following commands to get started:
Send all data requests to:
https://coin-app-server-api.vercel.app/api/
GET "/api/search"
The endpoint allows users to retrieve list of coins. To retrieve the list of coins.
GET "/api/description/:id"
The endpoint allows users to retrieve a specific coin information by ID.
- q (optional) search by coin name
- c (optional) country
- t (optional) type of coin
- m (optional) metal of coin
- qt (optional) quality of coin
- pFrom & pTo (otional) price range
- yFrom & yTo (otional) year range
Example request:
https://coin-app-server-api.vercel.app/api/search?c=canada&yTo=1980
npm install
nodemon server
Nijat Gurbanov
- Github: github.com/NikoFX
- Twitter: Nijat Gurbanov
- Linkedin: linkedin.com/in/nijat-gurbanov-dev
- Fork it
- Create your feature branch (
git checkout -b feature/fooBar
) - Commit your changes (
git commit -am 'Add some fooBar'
) - Push to the branch (
git push origin feature/fooBar
) - Create a new Pull Request