You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| COINMARKETCAP_API_KEY | Your CoinMarketCap API key | Yes |
86
+
87
+
### Types
88
+
89
+
```typescript
90
+
interfacePriceData {
91
+
price:number;
92
+
marketCap:number;
93
+
volume24h:number;
94
+
percentChange24h:number;
95
+
}
96
+
97
+
interfaceGetPriceContent {
98
+
symbol:string;
99
+
currency:string;
100
+
}
101
+
```
102
+
103
+
## Error Handling
104
+
105
+
The plugin includes comprehensive error handling for:
106
+
107
+
- Invalid API keys
108
+
- Rate limiting
109
+
- Network timeouts
110
+
- Invalid cryptocurrency symbols
111
+
- Unsupported currencies
112
+
113
+
## Rate Limits
114
+
115
+
CoinMarketCap API has different rate limits based on your subscription plan. Please refer to [CoinMarketCap's pricing page](https://coinmarketcap.com/api/pricing/) for detailed information.
116
+
117
+
## Support
118
+
119
+
For support, please open an issue in the repository or reach out to the maintainers:
120
+
121
+
- Discord: 0xspit
122
+
123
+
## Links
124
+
125
+
-[CoinMarketCap API Documentation](https://coinmarketcap.com/api/documentation/v1/)
0 commit comments