This project aims to explore AI-driven crypto analysis but does not offer financial advice. Remember:
- Cryptocurrencies are highly volatile, and past performance does not guarantee future results.
- Always conduct your own research and due diligence before investing.
- The developers of this tool are not liable for any losses incurred from its use.
Endpoint | Description |
---|---|
/api/historical |
Returns historical prices of cryptocurrencies. Useful for price trend analysis over time. |
/api/crypto |
Returns information about cryptocurrencies. This may include data such as name, symbol, market cap, current price, trading volume, etc. |
/api/map |
Lists available cryptocurrencies. Can be used to get an overview of cryptocurrencies supported by the platform. |
- Clone the project repository:
git clone https://github.com/your_username/crypto-trends.git
- Navigate to the project directory:
cd crypto-trends
- Install project dependencies:
go mod tidy
- Create a .env file in the root directory of the project and add your API keys like the .env.example:
COINMARKETCAP_API_KEY=YOUR_MARKETCAP_API_KEY GEMINI_API_KEY=YOUR_GEMINI_API_KEY
To run the project, execute the command:
go run main.go