Complete integration with FinnHub's financial data API providing access to stocks, forex, crypto, company fundamentals, news, and real-time market data.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionfinnhub-apiExecute the skills CLI command in your project's root directory to begin installation:
Fetches finnhub-api from adaptationio/skrillz and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate finnhub-api. Access via /finnhub-api in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
1
total installs
1
this week
6
GitHub stars
0
upvotes
Run in your terminal
1
installs
1
this week
6
stars
Complete integration with FinnHub's financial data API providing access to stocks, forex, crypto, company fundamentals, news, and real-time market data.
# Environment variable (recommended)
export FINNHUB_API_KEY="your_api_key"
# Or in .env file
FINNHUB_API_KEY=your_api_key
import requests
import os
API_KEY = os.getenv("FINNHUB_API_KEY")
BASE_URL = "https://finnhub.io/api/v1"
def get_quote(symbol: str) -> dict:
"""Get real-time quote for a symbol."""
response = requests.get(
f"{BASE_URL}/quote",
params={"symbol": symbol, "token": API_KEY}
)
return response.json()
# Example
quote = get_quote("AAPL")
print(f"AAPL: ${quote['c']:.2f} ({quote['dp']:+.2f}%)")
import finnhub
client = finnhub.Client(api_key="your_api_key")
# Get quote
quote = client.quote("AAPL")
# Get company profile
profile = client.company_profile2(symbol="AAPL")
# Get financials
financials = client.company_basic_financials("AAPL", "all")
| Endpoint | Description | Free |
|---|---|---|
/quote |
Real-time quote | ✅ |
/stock/candle |
Historical OHLCV | ✅ |
/stock/profile2 |
Company profile | ✅ |
/stock/peers |
Similar companies | ✅ |
/company-news |
Company news | ✅ |
/stock/metric |
Basic financials | ✅ |
/stock/financials |
Financial statements | ✅ |
/stock/insider-transactions |
Insider trades | ⚠️ Premium |
/stock/insider-sentiment |
Insider sentiment | ⚠️ Premium |
| Endpoint | Description | Free |
|---|---|---|
/stock/financials-reported |
SEC reported | ✅ |
/stock/earnings |
Earnings history | ✅ |
/stock/recommendation |
Analyst ratings | ✅ |
/stock/price-target |
Price targets | ✅ |
/stock/revenue-estimate |
Revenue estimates | ⚠️ Premium |
/stock/eps-estimate |
EPS estimates | ⚠️ Premium |
| Endpoint | Description | Free |
|---|---|---|
/forex/rates |
Exchange rates | ✅ |
/forex/candle |
Forex OHLCV | ✅ |
/crypto/candle |
Crypto OHLCV | ✅ |
/crypto/exchanges |
Crypto exchanges | ✅ |
/crypto/symbol |
Crypto symbols | ✅ |
| Endpoint | Description | Free |
|---|---|---|
/company-news |
Company news | ✅ |
/news |
Market news | ✅ |
/press-releases |
Press releases | ⚠️ Premium |
/news-sentiment |
News sentiment | ⚠️ Premium |
| Endpoint | Description | Free |
|---|---|---|
/calendar/earnings |
Earnings calendar | ✅ |
/calendar/ipo |
IPO calendar | ✅ |
/stock/dividends |
Dividend history | ✅ |
/stock/splits |
Stock splits | ✅ |
| Tier | Calls/Minute | Notes |
|---|---|---|
| Free | 60 | US stocks, forex, crypto |
| Paid | 300+ | Per-market pricing |
Rate limit headers:
X-Ratelimit-Limit: Max calls per minuteX-Ratelimit-Remaining: Calls remainingX-Ratelimit-Reset: Reset timestampdef get_stock_info(symbol: str) -> dict:
"""Get comprehensive stock info."""
quote = requests.get(
f"{BASE_URL}/quote",
params={"symbol": symbol, "token": API_KEY}
).json()
profile = requests.get(
f"{BASE_URL}/stock/profile2",
params={"symbol": symbol, "token": API_KEY}
).json()
return {
"symbol": symbol,
"name": profile.get("name"),
"price": quote["c"],
"change": quote["d"],
"change_percent": quote["dp"],
"high": quote["h"],
"low": quote["l"],
"market_cap": profile.get("marketCapitalization"),
"industry": profile.get("finnhubIndustry")
}
import time
def get_candles(symbol: str, resolution: str = "D", days: int = 30) -> dict:
"""
Get historical OHLCV data.
Resolutions: 1, 5, 15, 30, 60, D, W, M
"""
end = int(time.time())
start = end - (days * 24 * 60 * 60)
response = requests.get(
f"{BASE_URL}/stock/candle",
params={
"symbol": symbol,
"resolution": resolution,
"from": start,
"to": end,
"token": API_KEY
}
)
return response.json()
def get_earnings_calendar(from_date: str, to_date: str) -> list:
"""Get upcoming earnings releases."""
response = requests.get(
f"{BASE_URL}/calendar/earnings",
params={
"from": from_date,
"to": to_date,
"token": API_KEY
}
)
return response.json().get("earningsCalendar", [])
# Example: Get next week's earnings
earnings = get_earnings_calendar("2025-12-05", "2025-12-12")
def get_company_news(symbol: str, days: int = 7) -> list:
"""Get Prerequisites
Time Estimate
15-45 minutes depending on use case complexity
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
jwynia/agent-skills
mindrally/skills
github/awesome-copilot
kostja94/marketing-skills
wispbit-ai/skills
sickn33/antigravity-awesome-skills
finnhub-api fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
We added finnhub-api from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
Registry listing for finnhub-api matched our evaluation — installs cleanly and behaves as described in the markdown.
Solid pick for teams standardizing on skills: finnhub-api is focused, and the summary matches what you get after install.
finnhub-api has been reliable in day-to-day use. Documentation quality is above average for community skills.
Useful defaults in finnhub-api — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
Solid pick for teams standardizing on skills: finnhub-api is focused, and the summary matches what you get after install.
Solid pick for teams standardizing on skills: finnhub-api is focused, and the summary matches what you get after install.
finnhub-api is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
Useful defaults in finnhub-api — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
showing 1-10 of 52