External API integrations for the Mayson platform.
This package provides unified interfaces for external services like news aggregators, market data providers, and other third-party APIs.
import { cryptoPanic, fetchMarketNews } from "@mayson/integrations";// Check if CryptoPanic is configuredif (cryptoPanic.isConfigured()) { const news = await fetchMarketNews("crypto", 10);} Copy
import { cryptoPanic, fetchMarketNews } from "@mayson/integrations";// Check if CryptoPanic is configuredif (cryptoPanic.isConfigured()) { const news = await fetchMarketNews("crypto", 10);}
External API integrations for the Mayson platform.
This package provides unified interfaces for external services like news aggregators, market data providers, and other third-party APIs.
Example