get_stablecoin_flows
Analyze stablecoin market cap and flow data to track capital entering or leaving cryptocurrency markets, providing insights into market sentiment and trends.
Instructions
Get stablecoin market cap and flow data — a proxy for capital entering or leaving crypto. Rising stablecoin market cap signals new capital inflows (bullish). Declining market cap signals capital outflows (bearish). Returns total market cap, 14-day and 90-day flow data, and per-stablecoin breakdown (USDT, USDC, DAI, etc.).
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/stablecoin-flows.ts:14-16 (handler)The handler for get_stablecoin_flows which fetches data from the API.
export async function handler(_args: z.infer<typeof schema>) { return apiGet("/api/v1/sentiment/stablecoins"); } - src/tools/stablecoin-flows.ts:12-12 (schema)The schema for get_stablecoin_flows, which takes no arguments.
export const schema = z.object({}); - src/tools/stablecoin-flows.ts:4-4 (registration)The name declaration for the tool.
export const name = "get_stablecoin_flows";