{"id":7846,"date":"2026-03-09T14:09:20","date_gmt":"2026-03-09T13:09:20","guid":{"rendered":"https:\/\/eodhd.com\/financial-apis\/?p=7846"},"modified":"2026-03-09T14:17:43","modified_gmt":"2026-03-09T13:17:43","slug":"eodhd-claude-skills-teach-your-ai-assistant-the-entire-financial-api","status":"publish","type":"post","link":"https:\/\/eodhd.com\/financial-apis\/eodhd-claude-skills-teach-your-ai-assistant-the-entire-financial-api","title":{"rendered":"EODHD Claude Skills: Teach Your AI Assistant the Entire Financial API"},"content":{"rendered":"\n<p class=\"docs-content__text\">AI coding assistants like Claude and Codex are transforming how developers work with APIs. But without structured knowledge about specific APIs, these assistants rely on general training data &#8211; which means outdated endpoints, wrong parameter names, and hallucinated responses. EODHD Claude Skills solves this by giving your AI assistant expert-level knowledge of the entire EODHD Financial API.<\/p>\n\n\n\n<p class=\"docs-content__text\">This article explains what Claude Skills are, why they matter for financial data workflows, and how to install and use the EODHD skills library in under 5 minutes.<\/p>\n\n\n<!--TOC-->\n\n\n<h2 class=\"docs-content__heading docs-content__heading--h2 wp-block-heading\" id=\"h-what-are-claude-skills\">What Are Claude Skills?<\/h2>\n\n\n\n<p class=\"docs-content__text\">Claude Skills are structured knowledge packs that teach AI assistants how to use specific tools and APIs correctly. Think of them as a detailed instruction manual that Claude reads before answering your questions.<\/p>\n\n\n\n<p class=\"docs-content__text\">Without skills, when you ask Claude &#8220;get me AAPL historical prices from EODHD&#8221;, it has to guess the endpoint URL, parameter names, and response format. It might get it right, or it might hallucinate an endpoint that doesn&#8217;t exist.<\/p>\n\n\n\n<p class=\"docs-content__text\">With the EODHD skills installed, Claude knows the exact endpoint (<strong>\/api\/eod\/AAPL.US<\/strong>), the correct parameters (<strong>from<\/strong>, <strong>to<\/strong>, <strong>fmt<\/strong>, <strong>api_token<\/strong>), and the precise response structure. It can also write working Python scripts, handle edge cases, and explain what each field means.<\/p>\n\n\n\n<h2 class=\"docs-content__heading docs-content__heading--h2 wp-block-heading\" id=\"h-what-is-eodhd-claude-skills\">What Is EODHD Claude Skills?<\/h2>\n\n\n\n<p class=\"docs-content__text\"><a href=\"https:\/\/github.com\/EodHistoricalData\/eodhd-claude-skills\">EODHD Claude Skills<\/a> is an open-source skill adapter library that enables AI agents (Claude, Codex) to interact with the EODHD Financial API accurately and reliably. It includes:<\/p>\n\n\n\n<ul class=\"docs-content__list wp-block-list\">\n<li><strong>72 documented API endpoints<\/strong> &#8211; stocks, options, crypto, indices, macro, and marketplace data<\/li>\n\n\n\n<li><strong>28 reference guides<\/strong> &#8211; authentication, exchanges, rate limits, symbol format, fundamentals, and more<\/li>\n\n\n\n<li><strong>Lightweight Python client<\/strong> &#8211; zero external dependencies, works out of the box<\/li>\n\n\n\n<li><strong>Analysis templates<\/strong> &#8211; reproducible report formats for consistent output<\/li>\n\n\n\n<li><strong>7 subscription plan guides<\/strong> &#8211; so the AI knows what data your plan can access<\/li>\n<\/ul>\n\n\n\n<h2 class=\"docs-content__heading docs-content__heading--h2 wp-block-heading\" id=\"h-why-you-need-this\">Why You Need This<\/h2>\n\n\n\n<p class=\"docs-content__text\">If you use Claude Code, Codex, or any AI coding assistant with EODHD data, you have likely encountered these problems:<\/p>\n\n\n\n<ul class=\"docs-content__list wp-block-list\">\n<li><strong>Wrong endpoints<\/strong> &#8211; the AI guesses a URL that doesn&#8217;t exist or has been deprecated<\/li>\n\n\n\n<li><strong>Incorrect parameters<\/strong> &#8211; wrong date format, missing required fields, unknown query params<\/li>\n\n\n\n<li><strong>Outdated information<\/strong> &#8211; AI training data is months or years behind the current API<\/li>\n\n\n\n<li><strong>No marketplace knowledge<\/strong> &#8211; the AI has no idea about Options, Tick Data, ESG, or other marketplace products<\/li>\n\n\n\n<li><strong>Trial and error<\/strong> &#8211; you end up debugging the AI&#8217;s code instead of your own<\/li>\n<\/ul>\n\n\n\n<p class=\"docs-content__text\">EODHD Claude Skills eliminates all of these issues. Once installed, your AI assistant has complete, up-to-date knowledge of every EODHD endpoint, parameter, and response format.<\/p>\n\n\n\n<h2 class=\"docs-content__heading docs-content__heading--h2 wp-block-heading\" id=\"h-installation\">Installation<\/h2>\n\n\n\n<h3 class=\"docs-content__heading docs-content__heading--h3 wp-block-heading\" id=\"h-claude-code-plugin-system\">Claude Code (Plugin System)<\/h3>\n\n\n\n<p class=\"docs-content__text\">The fastest way to install is via the Claude Code plugin system. Open your terminal and run:<\/p>\n\n\n<div class=\"code-block\">\n<pre class=\"docs-content__code-block wp-block-code\"><code lang=\"bash\" class=\"language-bash\"># Register the marketplace\n\/plugin marketplace add EodHistoricalData\/eodhd-claude-skills\n\n# Install the plugin\n\/plugin install eodhd-api@eodhd-claude-skills<\/code><\/pre>\n<\/div>\n\n\n<p class=\"docs-content__text\">That&#8217;s it. Set your API token and start working:<\/p>\n\n\n<div class=\"code-block\">\n<pre class=\"docs-content__code-block wp-block-code\"><code lang=\"bash\" class=\"language-bash\">export EODHD_API_TOKEN=\"your_token_here\"<\/code><\/pre>\n<\/div>\n\n\n<p class=\"docs-content__text\">To manage the plugin later:<\/p>\n\n\n<div class=\"code-block\">\n<pre class=\"docs-content__code-block wp-block-code\"><code lang=\"bash\" class=\"language-bash\">\/plugin update eodhd-api@eodhd-claude-skills      # Update to latest version\n\/plugin enable eodhd-api@eodhd-claude-skills       # Enable\n\/plugin disable eodhd-api@eodhd-claude-skills      # Disable\n\/plugin uninstall eodhd-api@eodhd-claude-skills    # Uninstall<\/code><\/pre>\n<\/div>\n\n\n<h3 class=\"docs-content__heading docs-content__heading--h3 wp-block-heading\" id=\"h-manual-setup\">Manual Setup<\/h3>\n\n\n\n<p class=\"docs-content__text\">If you prefer manual installation, clone the repository:<\/p>\n\n\n<div class=\"code-block\">\n<pre class=\"docs-content__code-block wp-block-code\"><code lang=\"bash\" class=\"language-bash\">git clone https:\/\/github.com\/EodHistoricalData\/eodhd-claude-skills.git\nexport EODHD_API_TOKEN=\"your_token_here\"<\/code><\/pre>\n<\/div>\n\n\n<h2 class=\"docs-content__heading docs-content__heading--h2 wp-block-heading\" id=\"h-what-is-covered\">What Is Covered<\/h2>\n\n\n\n<p class=\"docs-content__text\">The skills library documents 72 EODHD API endpoints across all major categories:<\/p>\n\n\n\n<h3 class=\"docs-content__heading docs-content__heading--h3 wp-block-heading\" id=\"h-market-data\">Market Data<\/h3>\n\n\n\n<figure class=\"docs-content__table-wrap wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Endpoint<\/th><th>Description<\/th><\/tr><\/thead><tbody><tr><td>Historical Stock Prices (EOD)<\/td><td>End-of-day OHLCV data for stocks, ETFs, funds<\/td><\/tr><tr><td>Intraday Historical Data<\/td><td>1m, 5m, 1h bars for intraday analysis<\/td><\/tr><tr><td>Live Price Data<\/td><td>Delayed real-time quotes with bid\/ask<\/td><\/tr><tr><td>US Live Extended Quotes<\/td><td>Extended quote data for US markets<\/td><\/tr><tr><td>WebSockets Real-Time Data<\/td><td>Streaming live prices via WebSocket<\/td><\/tr><tr><td>Technical Indicators<\/td><td>SMA, EMA, RSI, MACD, Bollinger Bands, and more<\/td><\/tr><tr><td>Stock Screener<\/td><td>Filter stocks by fundamentals, price, volume<\/td><\/tr><tr><td>Historical Market Cap<\/td><td>Historical market capitalization data<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"docs-content__heading docs-content__heading--h3 wp-block-heading\" id=\"h-fundamentals-amp-company-data\">Fundamentals &amp; Company Data<\/h3>\n\n\n\n<figure class=\"docs-content__table-wrap wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Endpoint<\/th><th>Description<\/th><\/tr><\/thead><tbody><tr><td>Fundamentals Data<\/td><td>Balance sheet, income, cash flow for stocks, ETFs, funds<\/td><\/tr><tr><td>Bulk Fundamentals<\/td><td>Fundamentals for all tickers on an exchange in one call<\/td><\/tr><tr><td>Company News<\/td><td>News articles with sentiment scores<\/td><\/tr><tr><td>Sentiment Data<\/td><td>Aggregated news sentiment by ticker<\/td><\/tr><tr><td>Insider Transactions<\/td><td>SEC insider buy\/sell activity<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"docs-content__heading docs-content__heading--h3 wp-block-heading\" id=\"h-calendar-amp-events\">Calendar &amp; Events<\/h3>\n\n\n\n<figure class=\"docs-content__table-wrap wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Endpoint<\/th><th>Description<\/th><\/tr><\/thead><tbody><tr><td>Upcoming Earnings<\/td><td>Earnings calendar with estimates<\/td><\/tr><tr><td>Upcoming Dividends<\/td><td>Dividend calendar with ex-dates and amounts<\/td><\/tr><tr><td>Upcoming Splits<\/td><td>Stock split calendar<\/td><\/tr><tr><td>Upcoming IPOs<\/td><td>IPO calendar with pricing details<\/td><\/tr><tr><td>Economic Events<\/td><td>Macro event calendar (FOMC, CPI, NFP, etc.)<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"docs-content__heading docs-content__heading--h3 wp-block-heading\" id=\"h-marketplace-products\">Marketplace Products<\/h3>\n\n\n\n<p class=\"docs-content__text\">The skills also cover EODHD Marketplace products, including US Options (EOD + contracts), Tick Data, TradingHours, Illio Analytics, Investverte ESG, and PRAAMS risk analytics.<\/p>\n\n\n\n<h3 class=\"docs-content__heading docs-content__heading--h3 wp-block-heading\" id=\"h-reference-guides\">Reference Guides<\/h3>\n\n\n\n<p class=\"docs-content__text\">Beyond endpoints, the library includes 28 reference guides that help Claude understand the EODHD ecosystem:<\/p>\n\n\n\n<ul class=\"docs-content__list wp-block-list\">\n<li><strong>Authentication<\/strong> &#8211; API tokens, security, CORS, environment setup<\/li>\n\n\n\n<li><strong>Symbol Format<\/strong> &#8211; ticker format rules (AAPL.US, BTC-USD.CC, EURUSD.FOREX)<\/li>\n\n\n\n<li><strong>Exchanges<\/strong> &#8211; 70+ supported exchanges with trading hours and coverage<\/li>\n\n\n\n<li><strong>Rate Limits<\/strong> &#8211; API quotas, optimization strategies<\/li>\n\n\n\n<li><strong>Fundamentals<\/strong> &#8211; deep guides for stocks, ETFs, funds, crypto<\/li>\n\n\n\n<li><strong>Data Adjustments<\/strong> &#8211; split and dividend adjustment methodology<\/li>\n\n\n\n<li><strong>Pricing and Plans<\/strong> &#8211; what data each subscription tier can access<\/li>\n<\/ul>\n\n\n\n<h2 class=\"docs-content__heading docs-content__heading--h2 wp-block-heading\" id=\"h-usage-examples\">Usage Examples<\/h2>\n\n\n\n<p class=\"docs-content__text\">Once the skill is installed, you can interact with EODHD data through natural language prompts. Here are practical examples across different use cases.<\/p>\n\n\n\n<h3 class=\"docs-content__heading docs-content__heading--h3 wp-block-heading\" id=\"h-fetch-historical-prices\">Fetch Historical Prices<\/h3>\n\n\n<div class=\"code-block\">\n<pre class=\"docs-content__code-block wp-block-code\"><code class=\"\">Use the eodhd-api plugin. Fetch daily OHLCV for AAPL.US from 2024-01-01 to 2024-12-31\nand show the first and last 5 rows. API key: demo.<\/code><\/pre>\n<\/div>\n\n\n<p class=\"docs-content__text\">Claude will call the correct endpoint (\/api\/eod\/AAPL.US), use the right parameters, and format the output in a readable table.<\/p>\n\n\n\n<h3 class=\"docs-content__heading docs-content__heading--h3 wp-block-heading\" id=\"h-fundamental-analysis\">Fundamental Analysis<\/h3>\n\n\n<div class=\"code-block\">\n<pre class=\"docs-content__code-block wp-block-code\"><code class=\"\">Use the eodhd-api plugin. Give me a full fundamental analysis of NVDA.US: revenue and\nearnings growth (last 4 quarters and 3 years), operating margin trend, P\/E and EV\/EBITDA\nvs sector peers, insider activity over the past 6 months, and latest news sentiment.\nAPI key: EODHD_API_TOKEN.<\/code><\/pre>\n<\/div>\n\n\n<h3 class=\"docs-content__heading docs-content__heading--h3 wp-block-heading\" id=\"h-compare-multiple-stocks\">Compare Multiple Stocks<\/h3>\n\n\n<div class=\"code-block\">\n<pre class=\"docs-content__code-block wp-block-code\"><code class=\"\">Use the eodhd-api plugin. Compare AAPL.US, MSFT.US, GOOGL.US, and AMZN.US across:\nP\/E ratio, EV\/EBITDA, revenue growth (YoY), operating margin, and net debt\/EBITDA.\nPresent as a table and identify the most attractively valued. API key: EODHD_API_TOKEN.<\/code><\/pre>\n<\/div>\n\n\n<h3 class=\"docs-content__heading docs-content__heading--h3 wp-block-heading\" id=\"h-write-python-scripts\">Write Python Scripts<\/h3>\n\n\n<div class=\"code-block\">\n<pre class=\"docs-content__code-block wp-block-code\"><code class=\"\">Use the eodhd-api plugin. Write a Python script that fetches EOD prices for all S&amp;P 500\nconstituents and computes the total price return for each ticker over a given date range.\nAccept --from-date, --to-date, and --api-key as arguments. Use only stdlib, no pandas.<\/code><\/pre>\n<\/div>\n\n\n<p class=\"docs-content__text\">Because Claude has the skill loaded, it will use the correct EODHD endpoints, handle pagination for bulk data, and respect rate limits \u2014 all without you having to specify any of that.<\/p>\n\n\n\n<h3 class=\"docs-content__heading docs-content__heading--h3 wp-block-heading\" id=\"h-macro-amp-treasury-analysis\">Macro &amp; Treasury Analysis<\/h3>\n\n\n<div class=\"code-block\">\n<pre class=\"docs-content__code-block wp-block-code\"><code class=\"\">Use the eodhd-api plugin. Pull US CPI inflation and the 10-year Treasury par yield from\n2010 to 2024. Overlay SPY.US calendar-year returns and describe the historical relationship\nbetween inflation regimes, rate levels, and equity performance. API key: EODHD_API_TOKEN.<\/code><\/pre>\n<\/div>\n\n\n<h3 class=\"docs-content__heading docs-content__heading--h3 wp-block-heading\" id=\"h-options-chain-analysis\">Options Chain Analysis<\/h3>\n\n\n<div class=\"code-block\">\n<pre class=\"docs-content__code-block wp-block-code\"><code class=\"\">Use the eodhd-api plugin. Pull the current options chain for AAPL.US expiring in\nthe next 30 days. Show the five strikes nearest the money on each side with their IV,\ndelta, and open interest. API key: EODHD_API_TOKEN.<\/code><\/pre>\n<\/div>\n\n\n<h2 class=\"docs-content__heading docs-content__heading--h2 wp-block-heading\" id=\"h-built-in-python-client\">Built-in Python Client<\/h2>\n\n\n\n<p class=\"docs-content__text\">The skills library ships with a lightweight Python client that requires zero external dependencies. It works with Python 3.8+ and supports the most common EODHD endpoints out of the box.<\/p>\n\n\n<div class=\"code-block\">\n<pre class=\"docs-content__code-block wp-block-code\"><code lang=\"bash\" class=\"language-bash\"># Historical prices\npython skills\/eodhd-api\/scripts\/eodhd_client.py \\\n  --endpoint eod --symbol AAPL.US \\\n  --from-date 2025-01-01 --to-date 2025-03-31\n\n# Company fundamentals\npython skills\/eodhd-api\/scripts\/eodhd_client.py \\\n  --endpoint fundamentals --symbol NVDA.US\n\n# Intraday 5-minute bars\npython skills\/eodhd-api\/scripts\/eodhd_client.py \\\n  --endpoint intraday --symbol TSLA.US \\\n  --interval 5m --from-date 2025-01-15\n\n# Technical indicator (50-day SMA)\npython skills\/eodhd-api\/scripts\/eodhd_client.py \\\n  --endpoint technical --symbol AAPL.US --function sma --period 50\n\n# Stock screener\npython skills\/eodhd-api\/scripts\/eodhd_client.py \\\n  --endpoint screener --limit 20\n\n# Account status and API usage\npython skills\/eodhd-api\/scripts\/eodhd_client.py --endpoint user<\/code><\/pre>\n<\/div>\n\n\n<h2 class=\"docs-content__heading docs-content__heading--h2 wp-block-heading\" id=\"h-tips-for-best-results\">Tips for Best Results<\/h2>\n\n\n\n<p class=\"docs-content__text\">Claude Code treats installed skills as optional context. To make sure the skill is always used when you work with financial data, follow these tips:<\/p>\n\n\n\n<h3 class=\"docs-content__heading docs-content__heading--h3 wp-block-heading\" id=\"h-reference-the-skill-in-your-prompt\">Reference the Skill in Your Prompt<\/h3>\n\n\n\n<p class=\"docs-content__text\">Start your message with a line like:<\/p>\n\n\n<div class=\"code-block\">\n<pre class=\"docs-content__code-block wp-block-code\"><code class=\"\">Use the eodhd-api plugin. Get me AAPL.US daily prices for the last 30 days.<\/code><\/pre>\n<\/div>\n\n\n<h3 class=\"docs-content__heading docs-content__heading--h3 wp-block-heading\" id=\"h-add-a-project-level-instruction\">Add a Project-Level Instruction<\/h3>\n\n\n\n<p class=\"docs-content__text\">Create or edit a CLAUDE.md in your project root and add:<\/p>\n\n\n<div class=\"code-block\">\n<pre class=\"docs-content__code-block wp-block-code\"><code class=\"\">Always use available skills (especially eodhd-api) when handling financial data requests.<\/code><\/pre>\n<\/div>\n\n\n<p class=\"docs-content__text\">Claude Code reads CLAUDE.md at the start of every session, so this acts as a persistent hint.<\/p>\n\n\n\n<h3 class=\"docs-content__heading docs-content__heading--h3 wp-block-heading\" id=\"h-add-a-global-instruction\">Add a Global Instruction<\/h3>\n\n\n\n<p class=\"docs-content__text\">To apply the hint across all your projects, add the following to your ~\/.claude\/CLAUDE.md:<\/p>\n\n\n<div class=\"code-block\">\n<pre class=\"docs-content__code-block wp-block-code\"><code class=\"\">Use available skills whenever they match the task at hand.<\/code><\/pre>\n<\/div>\n\n\n<h2 class=\"docs-content__heading docs-content__heading--h2 wp-block-heading\" id=\"h-repository-structure\">Repository Structure<\/h2>\n\n\n<div class=\"code-block\">\n<pre class=\"docs-content__code-block wp-block-code\"><code class=\"\">eodhd-claude-skills\/\n\u251c\u2500\u2500 skills\/\n\u2502   \u2514\u2500\u2500 eodhd-api\/\n\u2502       \u251c\u2500\u2500 SKILL.md              # Primary skill definition\n\u2502       \u251c\u2500\u2500 references\/\n\u2502       \u2502   \u251c\u2500\u2500 general\/          # 28 reference guides\n\u2502       \u2502   \u251c\u2500\u2500 endpoints\/        # 72 endpoint docs\n\u2502       \u2502   \u251c\u2500\u2500 subscriptions\/    # 7 plan guides\n\u2502       \u2502   \u2514\u2500\u2500 workflows.md      # Analysis patterns\n\u2502       \u251c\u2500\u2500 scripts\/\n\u2502       \u2502   \u2514\u2500\u2500 eodhd_client.py   # Python client (stdlib-only)\n\u2502       \u2514\u2500\u2500 templates\/\n\u2502           \u2514\u2500\u2500 analysis_report.md\n\u251c\u2500\u2500 adapters\/\n\u2502   \u251c\u2500\u2500 claude\/                   # Claude environment adapter\n\u2502   \u2514\u2500\u2500 codex\/                    # Codex environment adapter\n\u251c\u2500\u2500 CLAUDE.md                     # Project context\n\u2514\u2500\u2500 README.md<\/code><\/pre>\n<\/div>\n\n\n<h2 class=\"docs-content__heading docs-content__heading--h2 wp-block-heading\" id=\"h-who-is-this-for\">Who Is This For<\/h2>\n\n\n\n<ul class=\"docs-content__list wp-block-list\">\n<li><strong>Developers<\/strong> building apps with EODHD data &#8211; stop guessing endpoints, let the AI do it right<\/li>\n\n\n\n<li><strong>Quants and analysts<\/strong> &#8211; ask for complex analyses in plain language, get reproducible Python scripts<\/li>\n\n\n\n<li><strong>Data engineers<\/strong> &#8211; automate data pipeline generation with correct API calls from day one<\/li>\n\n\n\n<li><strong>Anyone using Claude Code<\/strong> with financial data &#8211; one install, permanent upgrade to AI accuracy<\/li>\n<\/ul>\n\n\n\n<h2 class=\"docs-content__heading docs-content__heading--h2 wp-block-heading\" id=\"h-getting-started\">Getting Started<\/h2>\n\n\n\n<ul class=\"docs-content__list wp-block-list\">\n<li>Get your EODHD API token at <a href=\"https:\/\/eodhd.com\/\">eodhd.com<\/a><\/li>\n\n\n\n<li>Install the skills: <a href=\"https:\/\/github.com\/EodHistoricalData\/eodhd-claude-skills\">github.com\/EodHistoricalData\/eodhd-claude-skills<\/a><\/li>\n\n\n\n<li>Explore EODHD API documentation at <a href=\"https:\/\/eodhd.com\/financial-apis\">eodhd.com\/financial-apis<\/a><\/li>\n\n\n\n<li>Questions? Contact <a href=\"mailto:supportlevel1@eodhistoricaldata.com\">supportlevel1@eodhistoricaldata.com<\/a><\/li>\n<\/ul>\n\n\n\n<p class=\"docs-content__text has-text-align-center\"><a class=\"btn btn--orange\" href=\"https:\/\/eodhd.com\/register\"><span class='mb-text'>Sign up &amp; Get Data<\/span><\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>AI coding assistants like Claude and Codex are transforming how developers work with APIs. But without structured knowledge about specific APIs, these assistants rely on general training data &#8211; which means outdated endpoints, wrong parameter names, and hallucinated responses. EODHD Claude Skills solves this by giving your AI assistant expert-level knowledge of the entire EODHD [&hellip;]<\/p>\n","protected":false},"author":10,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[5,39],"tags":[155,151,154,152,153],"class_list":["post-7846","post","type-post","status-publish","format-standard","hentry","category-excel-python-php-laravel-java-matlab-examples","category-stock-prices-solutions","tag-ai","tag-claude","tag-codex","tag-mcp","tag-skills"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.6 (Yoast SEO v26.7) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>EODHD Claude Skills: Teach Your AI Assistant the Entire Financial API | EODHD APIs Documentation<\/title>\n<meta name=\"description\" content=\"Install EODHD Skills for Claude Code and get accurate access to 72 financial API endpoints - stocks, options, crypto, fundamentals, and macro data. Free and open source.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/eodhd.com\/financial-apis\/eodhd-claude-skills-teach-your-ai-assistant-the-entire-financial-api\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"EODHD Claude Skills: Teach Your AI Assistant the Entire Financial API\" \/>\n<meta property=\"og:description\" content=\"Install EODHD Skills for Claude Code and get accurate access to 72 financial API endpoints - stocks, options, crypto, fundamentals, and macro data. Free and open source.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/eodhd.com\/financial-apis\/eodhd-claude-skills-teach-your-ai-assistant-the-entire-financial-api\" \/>\n<meta property=\"og:site_name\" content=\"Stock Price Data, Financial and Stock Market API\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/eodhistoricaldata\" \/>\n<meta property=\"article:published_time\" content=\"2026-03-09T13:09:20+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-09T13:17:43+00:00\" \/>\n<meta name=\"author\" content=\"a.pletnev\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@EOD_data\" \/>\n<meta name=\"twitter:site\" content=\"@EOD_data\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"a.pletnev\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/eodhd.com\/financial-apis\/eodhd-claude-skills-teach-your-ai-assistant-the-entire-financial-api#article\",\"isPartOf\":{\"@id\":\"https:\/\/eodhd.com\/financial-apis\/eodhd-claude-skills-teach-your-ai-assistant-the-entire-financial-api\"},\"author\":{\"name\":\"a.pletnev\",\"@id\":\"https:\/\/eodhd.com\/financial-apis\/#\/schema\/person\/ed3193541c25b73e823a83bdcdb09b5d\"},\"headline\":\"EODHD Claude Skills: Teach Your AI Assistant the Entire Financial API\",\"datePublished\":\"2026-03-09T13:09:20+00:00\",\"dateModified\":\"2026-03-09T13:17:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/eodhd.com\/financial-apis\/eodhd-claude-skills-teach-your-ai-assistant-the-entire-financial-api\"},\"wordCount\":1087,\"publisher\":{\"@id\":\"https:\/\/eodhd.com\/financial-apis\/#organization\"},\"keywords\":[\"ai\",\"claude\",\"codex\",\"mcp\",\"skills\"],\"articleSection\":[\"5. Developer Tools &amp; Examples\",\"6. No-Code Tools\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/eodhd.com\/financial-apis\/eodhd-claude-skills-teach-your-ai-assistant-the-entire-financial-api\",\"url\":\"https:\/\/eodhd.com\/financial-apis\/eodhd-claude-skills-teach-your-ai-assistant-the-entire-financial-api\",\"name\":\"EODHD Claude Skills: Teach Your AI Assistant the Entire Financial API | EODHD APIs Documentation\",\"isPartOf\":{\"@id\":\"https:\/\/eodhd.com\/financial-apis\/#website\"},\"datePublished\":\"2026-03-09T13:09:20+00:00\",\"dateModified\":\"2026-03-09T13:17:43+00:00\",\"description\":\"Install EODHD Skills for Claude Code and get accurate access to 72 financial API endpoints - stocks, options, crypto, fundamentals, and macro data. Free and open source.\",\"breadcrumb\":{\"@id\":\"https:\/\/eodhd.com\/financial-apis\/eodhd-claude-skills-teach-your-ai-assistant-the-entire-financial-api#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/eodhd.com\/financial-apis\/eodhd-claude-skills-teach-your-ai-assistant-the-entire-financial-api\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/eodhd.com\/financial-apis\/eodhd-claude-skills-teach-your-ai-assistant-the-entire-financial-api#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/eodhd.com\/financial-apis\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"EODHD Claude Skills: Teach Your AI Assistant the Entire Financial API\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/eodhd.com\/financial-apis\/#website\",\"url\":\"https:\/\/eodhd.com\/financial-apis\/\",\"name\":\"Historical Stock Prices and Fundamental Financial Data APIs | EODHD\",\"description\":\"End Of Day (EOD), Fundamental and Real-time\/Live Data Market API\",\"publisher\":{\"@id\":\"https:\/\/eodhd.com\/financial-apis\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/eodhd.com\/financial-apis\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/eodhd.com\/financial-apis\/#organization\",\"name\":\"EODHD (EOD Historical Data)\",\"url\":\"https:\/\/eodhd.com\/financial-apis\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/eodhd.com\/financial-apis\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/eodhd.com\/financial-apis\/wp-content\/uploads\/2023\/12\/EODHD-Logo.png\",\"contentUrl\":\"https:\/\/eodhd.com\/financial-apis\/wp-content\/uploads\/2023\/12\/EODHD-Logo.png\",\"width\":159,\"height\":82,\"caption\":\"EODHD (EOD Historical Data)\"},\"image\":{\"@id\":\"https:\/\/eodhd.com\/financial-apis\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/eodhistoricaldata\",\"https:\/\/x.com\/EOD_data\",\"https:\/\/www.reddit.com\/r\/EODHistoricalData\/\",\"https:\/\/eod-historical-data.medium.com\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/eodhd.com\/financial-apis\/#\/schema\/person\/ed3193541c25b73e823a83bdcdb09b5d\",\"name\":\"a.pletnev\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/eodhd.com\/financial-apis\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/020e454749b61223b72b1bf96e7978ccdd1e39b04585b29698da3767a193a57d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/020e454749b61223b72b1bf96e7978ccdd1e39b04585b29698da3767a193a57d?s=96&d=mm&r=g\",\"caption\":\"a.pletnev\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"EODHD Claude Skills: Teach Your AI Assistant the Entire Financial API | EODHD APIs Documentation","description":"Install EODHD Skills for Claude Code and get accurate access to 72 financial API endpoints - stocks, options, crypto, fundamentals, and macro data. Free and open source.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/eodhd.com\/financial-apis\/eodhd-claude-skills-teach-your-ai-assistant-the-entire-financial-api","og_locale":"en_US","og_type":"article","og_title":"EODHD Claude Skills: Teach Your AI Assistant the Entire Financial API","og_description":"Install EODHD Skills for Claude Code and get accurate access to 72 financial API endpoints - stocks, options, crypto, fundamentals, and macro data. Free and open source.","og_url":"https:\/\/eodhd.com\/financial-apis\/eodhd-claude-skills-teach-your-ai-assistant-the-entire-financial-api","og_site_name":"Stock Price Data, Financial and Stock Market API","article_publisher":"https:\/\/www.facebook.com\/eodhistoricaldata","article_published_time":"2026-03-09T13:09:20+00:00","article_modified_time":"2026-03-09T13:17:43+00:00","author":"a.pletnev","twitter_card":"summary_large_image","twitter_creator":"@EOD_data","twitter_site":"@EOD_data","twitter_misc":{"Written by":"a.pletnev","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/eodhd.com\/financial-apis\/eodhd-claude-skills-teach-your-ai-assistant-the-entire-financial-api#article","isPartOf":{"@id":"https:\/\/eodhd.com\/financial-apis\/eodhd-claude-skills-teach-your-ai-assistant-the-entire-financial-api"},"author":{"name":"a.pletnev","@id":"https:\/\/eodhd.com\/financial-apis\/#\/schema\/person\/ed3193541c25b73e823a83bdcdb09b5d"},"headline":"EODHD Claude Skills: Teach Your AI Assistant the Entire Financial API","datePublished":"2026-03-09T13:09:20+00:00","dateModified":"2026-03-09T13:17:43+00:00","mainEntityOfPage":{"@id":"https:\/\/eodhd.com\/financial-apis\/eodhd-claude-skills-teach-your-ai-assistant-the-entire-financial-api"},"wordCount":1087,"publisher":{"@id":"https:\/\/eodhd.com\/financial-apis\/#organization"},"keywords":["ai","claude","codex","mcp","skills"],"articleSection":["5. Developer Tools &amp; Examples","6. No-Code Tools"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/eodhd.com\/financial-apis\/eodhd-claude-skills-teach-your-ai-assistant-the-entire-financial-api","url":"https:\/\/eodhd.com\/financial-apis\/eodhd-claude-skills-teach-your-ai-assistant-the-entire-financial-api","name":"EODHD Claude Skills: Teach Your AI Assistant the Entire Financial API | EODHD APIs Documentation","isPartOf":{"@id":"https:\/\/eodhd.com\/financial-apis\/#website"},"datePublished":"2026-03-09T13:09:20+00:00","dateModified":"2026-03-09T13:17:43+00:00","description":"Install EODHD Skills for Claude Code and get accurate access to 72 financial API endpoints - stocks, options, crypto, fundamentals, and macro data. Free and open source.","breadcrumb":{"@id":"https:\/\/eodhd.com\/financial-apis\/eodhd-claude-skills-teach-your-ai-assistant-the-entire-financial-api#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/eodhd.com\/financial-apis\/eodhd-claude-skills-teach-your-ai-assistant-the-entire-financial-api"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/eodhd.com\/financial-apis\/eodhd-claude-skills-teach-your-ai-assistant-the-entire-financial-api#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/eodhd.com\/financial-apis"},{"@type":"ListItem","position":2,"name":"EODHD Claude Skills: Teach Your AI Assistant the Entire Financial API"}]},{"@type":"WebSite","@id":"https:\/\/eodhd.com\/financial-apis\/#website","url":"https:\/\/eodhd.com\/financial-apis\/","name":"Historical Stock Prices and Fundamental Financial Data APIs | EODHD","description":"End Of Day (EOD), Fundamental and Real-time\/Live Data Market API","publisher":{"@id":"https:\/\/eodhd.com\/financial-apis\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/eodhd.com\/financial-apis\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/eodhd.com\/financial-apis\/#organization","name":"EODHD (EOD Historical Data)","url":"https:\/\/eodhd.com\/financial-apis\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/eodhd.com\/financial-apis\/#\/schema\/logo\/image\/","url":"https:\/\/eodhd.com\/financial-apis\/wp-content\/uploads\/2023\/12\/EODHD-Logo.png","contentUrl":"https:\/\/eodhd.com\/financial-apis\/wp-content\/uploads\/2023\/12\/EODHD-Logo.png","width":159,"height":82,"caption":"EODHD (EOD Historical Data)"},"image":{"@id":"https:\/\/eodhd.com\/financial-apis\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/eodhistoricaldata","https:\/\/x.com\/EOD_data","https:\/\/www.reddit.com\/r\/EODHistoricalData\/","https:\/\/eod-historical-data.medium.com\/"]},{"@type":"Person","@id":"https:\/\/eodhd.com\/financial-apis\/#\/schema\/person\/ed3193541c25b73e823a83bdcdb09b5d","name":"a.pletnev","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/eodhd.com\/financial-apis\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/020e454749b61223b72b1bf96e7978ccdd1e39b04585b29698da3767a193a57d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/020e454749b61223b72b1bf96e7978ccdd1e39b04585b29698da3767a193a57d?s=96&d=mm&r=g","caption":"a.pletnev"}}]}},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p8NjB1-22y","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/eodhd.com\/financial-apis\/wp-json\/wp\/v2\/posts\/7846","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/eodhd.com\/financial-apis\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/eodhd.com\/financial-apis\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/eodhd.com\/financial-apis\/wp-json\/wp\/v2\/users\/10"}],"replies":[{"embeddable":true,"href":"https:\/\/eodhd.com\/financial-apis\/wp-json\/wp\/v2\/comments?post=7846"}],"version-history":[{"count":1,"href":"https:\/\/eodhd.com\/financial-apis\/wp-json\/wp\/v2\/posts\/7846\/revisions"}],"predecessor-version":[{"id":7847,"href":"https:\/\/eodhd.com\/financial-apis\/wp-json\/wp\/v2\/posts\/7846\/revisions\/7847"}],"wp:attachment":[{"href":"https:\/\/eodhd.com\/financial-apis\/wp-json\/wp\/v2\/media?parent=7846"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/eodhd.com\/financial-apis\/wp-json\/wp\/v2\/categories?post=7846"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/eodhd.com\/financial-apis\/wp-json\/wp\/v2\/tags?post=7846"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}