Crypto Market Data
PassAudited by ClawScan on May 8, 2026.
Overview
This appears to be a read-only crypto market data tool, but users should know it sends queries to AIsa using an AIsa API key and its description slightly overstates stock/dividend use.
This skill looks appropriate for read-only cryptocurrency market research. Before installing, confirm you are comfortable providing an AISA_API_KEY and having crypto lookup queries sent to AIsa; do not treat it as a stock or dividend research tool unless the provider explicitly supports those datasets.
Findings (3)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Your AIsa API key may be used for API access, quota, billing, or account attribution when the skill is invoked.
The client reads an AIsa API key from the environment and sends it as a bearer token to the AIsa API. This is expected for the service, but it is still account/credential use.
self.api_key = api_key or os.environ.get("AISA_API_KEY") ... "Authorization": f"Bearer {self.api_key}"Use a dedicated, least-privilege API key if available, monitor usage, and revoke or rotate the key if you uninstall or stop using the skill.
Coin IDs, exchange IDs, contract addresses, and related market-data queries may be visible to the API provider.
The bundled script performs external HTTP requests to AIsa using user-supplied query parameters. This is aligned with the skill's market-data purpose, but it means crypto queries leave the local environment.
BASE_URL = "https://api.aisa.one/apis/v1" ... urllib.request.urlopen(req, timeout=60)
Avoid sending information you consider private, such as sensitive portfolio strategy details, unless you are comfortable sharing those queries with the API provider.
The tool may be selected for some non-crypto finance questions where it cannot provide appropriate data.
The visible functionality is CoinGecko-backed cryptocurrency data, so mentioning stock analysis and dividend research could cause the agent to invoke the skill for unsupported financial tasks.
Use when: the user needs market data, stock analysis, dividend research, or read-only financial data workflows.
Use this skill for cryptocurrency and CoinGecko-style market data; use a separate finance data source for stocks or dividends.
