Skip to content

Commit aa18f0e

Browse files
Update README.md
1 parent 9d51809 commit aa18f0e

File tree

1 file changed

+160
-18
lines changed

1 file changed

+160
-18
lines changed

components/token_metrics/README.md

Lines changed: 160 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,178 @@
11
# Overview
22

3-
Token Metrics API on Pipedream allows you to access comprehensive cryptocurrency data and analytics. Integrate token metrics, market data, and analytics into your workflows to build powerful automation solutions for cryptocurrency trading, portfolio management, and market analysis.
3+
The Token Metrics API integration for Pipedream provides comprehensive access to cryptocurrency data, analytics, and AI-powered insights. This component enables seamless integration of advanced token metrics, market analysis, and trading intelligence into your automated workflows.
44

5-
# Example Use Cases
6-
7-
- **Automated Portfolio Tracking**: Monitor your cryptocurrency portfolio by fetching token data and sending alerts when prices hit certain thresholds. Integrate with email services or Slack to receive real-time notifications.
8-
9-
- **Market Analysis Dashboard**: Collect token metrics data on a schedule and send it to Google Sheets or Airtable to create comprehensive market analysis dashboards with historical data tracking.
5+
Token Metrics delivers institutional-grade cryptocurrency analytics, including AI-generated reports, trading signals, fundamental and technical analysis, market metrics, and performance data across thousands of digital assets.
106

11-
- **Trading Signal Automation**: Use token analytics data to trigger automated trading signals, sending buy/sell recommendations via webhooks to trading platforms or notification services.
7+
# Key Features
128

13-
- **Research and Due Diligence**: Automatically fetch comprehensive token data for research purposes, combining it with other data sources to create detailed investment analysis reports.
9+
- **Comprehensive Token Data**: Access detailed information for thousands of cryptocurrencies including prices, market metrics, and historical data
10+
- **AI-Powered Analytics**: Leverage AI-generated reports, trading signals, and investment analysis
11+
- **Advanced Grading Systems**: Access TM Grades, Fundamental Grades, and Technology Grades for informed decision-making
12+
- **Market Intelligence**: Get market metrics, correlation analysis, and scenario-based price predictions
13+
- **Professional Indices**: Access crypto indices with holdings and performance data
14+
- **OHLCV Data**: Retrieve hourly and daily Open, High, Low, Close, Volume data
15+
- **Quantitative Metrics**: Advanced quantitative analysis and resistance/support levels
1416

1517
# Authentication
1618

17-
To use the Token Metrics API, you'll need:
19+
To use the Token Metrics API component, you'll need:
1820

19-
1. A Token Metrics account
21+
1. A Token Metrics account with API access
2022
2. An API key from your Token Metrics dashboard
2123

22-
The API uses Bearer token authentication. Your API key should be kept secure and not shared publicly.
24+
The API uses API key authentication via the `x-api-key` header. Your API key should be kept secure and not shared publicly.
25+
26+
## Setup Instructions
27+
28+
1. Sign up for a Token Metrics account at https://www.tokenmetrics.com/api
29+
2. Navigate to your [api keys dashboard](https://app.tokenmetrics.com/en/api?tab=keys) and generate an API key
30+
3. In Pipedream, connect the Token Metrics app using your API key
31+
4. The API key will be automatically included in all requests via the `x-api-key` header
2332

2433
# Available Actions
2534

26-
- **Get Tokens**: Retrieve a list of tokens with comprehensive metrics and analytics data
27-
- **Get Token Details**: Fetch detailed information for a specific token
28-
- **Search Tokens**: Search for tokens by name, symbol, or other criteria
35+
## Core Data Actions
36+
- **Get Tokens**: Retrieve comprehensive token listings with metadata and analytics
37+
- **Get Price**: Fetch current token prices for specified assets
38+
- **Get Top Market Cap Tokens**: Access tokens ranked by market capitalization
39+
40+
## Trading & Signals
41+
- **Get Trading Signals**: AI-generated long/short trading signals for all tokens
42+
- **Get Hourly Trading Signals**: Real-time hourly trading signals
43+
- **Get Moonshot Tokens**: AI-curated high-potential token picks
44+
45+
## Market Analysis
46+
- **Get Market Metrics**: Comprehensive crypto market analytics and sentiment indicators
47+
- **Get Correlation**: Token correlation analysis with top 100 market cap assets
48+
- **Get Scenario Analysis**: Price predictions based on different market scenarios
49+
- **Get Resistance Support**: Historical resistance and support levels
50+
51+
## OHLCV Data
52+
- **Get Hourly OHLCV**: Hourly Open, High, Low, Close, Volume data
53+
- **Get Daily OHLCV**: Daily OHLCV data for historical analysis
54+
55+
## Grading Systems
56+
- **Get TM Grades**: Latest Token Metrics grades with trader and quant scores
57+
- **Get TM Grades Historical**: Historical TM Grade data over time
58+
- **Get Fundamental Grades**: Fundamental analysis scores (community, exchange, VC, tokenomics)
59+
- **Get Fundamental Grades Historical**: Historical fundamental grade data
60+
- **Get Technology Grades**: Technology assessment scores (activity, security, repository)
61+
- **Get Technology Grades Historical**: Historical technology grade data
62+
63+
## Advanced Analytics
64+
- **Get AI Reports**: Comprehensive AI-generated token analysis reports
65+
- **Get Quantmetrics**: Advanced quantitative metrics and analysis
66+
- **Get Crypto Investors**: Latest crypto investor data and scores
67+
68+
## Indices & Performance
69+
- **Get Indices**: Access active and passive crypto indices
70+
- **Get Indices Holdings**: Current holdings and weightings for specific indices
71+
- **Get Indices Performance**: Historical performance data for crypto indices
72+
73+
# Example Use Cases
74+
75+
## Automated Trading Systems
76+
```javascript
77+
// Monitor trading signals and execute automated trades
78+
const signals = await steps.token_metrics.getTradingSignals({
79+
symbol: "BTC,ETH",
80+
signal: "1" // Bullish signals only
81+
});
82+
83+
// Process signals and trigger trading actions
84+
```
85+
86+
## Portfolio Management Dashboard
87+
```javascript
88+
// Create comprehensive portfolio tracking
89+
const tokens = await steps.token_metrics.getTokens({
90+
category: "defi,layer-1",
91+
limit: 100
92+
});
93+
94+
const grades = await steps.token_metrics.getTmGrades({
95+
token_id: tokens.data.map(t => t.token_id).join(",")
96+
});
97+
98+
// Combine data for portfolio analysis
99+
```
100+
101+
## Market Research Automation
102+
```javascript
103+
// Generate detailed investment research
104+
const aiReports = await steps.token_metrics.getAiReports({
105+
symbol: "SOL,AVAX"
106+
});
107+
108+
const fundamentals = await steps.token_metrics.getFundamentalGrades({
109+
symbol: "SOL,AVAX"
110+
});
111+
112+
// Create comprehensive research reports
113+
```
114+
115+
## Risk Management System
116+
```javascript
117+
// Monitor market conditions and correlations
118+
const marketMetrics = await steps.token_metrics.getMarketMetrics({
119+
start_date: "2025-07-01",
120+
end_date: "2025-07-10"
121+
});
122+
123+
const correlations = await steps.token_metrics.getCorrelation({
124+
symbol: "BTC"
125+
});
126+
127+
// Implement risk management strategies
128+
```
129+
130+
# API Endpoint
131+
132+
Base URL: `https://api.tokenmetrics.com/v2`
133+
134+
All requests require the `x-api-key` header for authentication.
135+
136+
# Rate Limits & Usage
137+
138+
Please refer to the [Token Metrics API documentation](https://developers.tokenmetrics.com/) for current rate limits, usage guidelines, and pricing information.
139+
140+
# Data Filtering & Pagination
141+
142+
Most actions support comprehensive filtering options:
143+
144+
- **Token Identification**: Filter by `token_id`, `symbol`, or `token_name`
145+
- **Market Filters**: Filter by `category`, `exchange`, `market_cap`, `volume`, `fdv`
146+
- **Date Ranges**: Use `start_date` and `end_date` for historical data
147+
- **Pagination**: Control results with `limit` (default: 50) and `page` (default: 1) parameters
148+
149+
# Error Handling
150+
151+
The component includes comprehensive error handling for common scenarios:
152+
153+
- **401 Unauthorized**: Invalid or expired API key
154+
- **403 Forbidden**: Insufficient API key permissions
155+
- **429 Rate Limited**: API rate limit exceeded
156+
- **5xx Server Errors**: Token Metrics API server issues
157+
158+
# Support & Resources
159+
160+
## Official Token Metrics Resources
161+
162+
- **API Dashboard**: [app.tokenmetrics.com/en/api](https://app.tokenmetrics.com/en/api) - Manage your API keys and access
163+
- **API Pricing Plans**: [app.tokenmetrics.com/en/api-plans](https://app.tokenmetrics.com/en/api-plans) - View pricing and plan details
164+
- **Token Metrics API Documentation**: [developers.tokenmetrics.com](https://developers.tokenmetrics.com/) - Complete API reference
165+
- **API Support (Telegram)**: [t.me/tokenmetricsapi](https://t.me/tokenmetricsapi) - Developer community and support
166+
- **Contact Us**: [tokenmetrics.com/contact-us](https://www.tokenmetrics.com/contact-us) - General support and inquiries
167+
168+
## Community & Support
29169

30-
# Rate Limits
170+
- **Pipedream Community**: For integration and workflow assistance
171+
- **Component Issues**: Report bugs or request features via the Pipedream platform
172+
- **Email Support**: [email protected] for API-related issues
31173

32-
Please refer to the Token Metrics API documentation for current rate limits and usage guidelines.
174+
# Version
33175

34-
# Support
176+
Current version: 0.0.1
35177

36-
For issues related to the Token Metrics API itself, please contact Token Metrics support. For Pipedream-specific issues, please reach out via the Pipedream community.
178+
Built with Pipedream Platform v3.0.3

0 commit comments

Comments
 (0)