Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Financial Modeling Prep API Configuration - https://financialmodelingprep.com/developer
# FMP API Key - Get from https://site.financialmodelingprep.com/pricing-plans?couponCode=eroy - 10% off link
FMP_API_KEY=your_api_key_here

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ pnpm add fmp-node-api

### 1. Get Your API Key

Sign up at [Financial Modeling Prep](https://site.financialmodelingprep.com/developer/docs/stable) and get your API key.
Sign up at [Financial Modeling Prep](https://site.financialmodelingprep.com/pricing-plans?couponCode=eroy) and get your API key. This link will get you 10% off.

### 2. Basic Usage

Expand Down
2 changes: 1 addition & 1 deletion apps/docs/src/app/docs/api/getting-started/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ const fmp = new FMP(); // Automatically uses FMP_API_KEY from environment

Create a `.env` file in your project root:

<CodeBlock language="env">{`# Your FMP API key (get one at https://financialmodelingprep.com/developer)
<CodeBlock language="env">{`# Your FMP API key (get one at https://site.financialmodelingprep.com/pricing-plans?couponCode=eroy)
FMP_API_KEY=your-api-key-here`}</CodeBlock>

Or set it in your system environment:
Expand Down
1 change: 1 addition & 0 deletions apps/docs/src/app/docs/api/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ const apiNavigationGroups = [
{ name: 'List Endpoints', href: '/docs/api/list' },
{ name: 'Calendar Endpoints', href: '/docs/api/calendar' },
{ name: 'Company Endpoints', href: '/docs/api/company' },
{ name: 'Screener Endpoints', href: '/docs/api/screener' },
{ name: 'Senate & House Trading', href: '/docs/api/senate-house' },
{ name: 'Institutional Endpoints', href: '/docs/api/institutional' },
{ name: 'Insider Endpoints', href: '/docs/api/insider' },
Expand Down
6 changes: 3 additions & 3 deletions apps/docs/src/app/docs/api/market/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@ Access market-wide data including performance metrics, trading hours, sector inf
},
{
method: 'GET',
path: '/stock_market/gainers',
path: '/stable/biggest-gainers',
description: 'Get top gaining stocks',
},
{
method: 'GET',
path: '/stock_market/losers',
path: '/stable/biggest-losers',
description: 'Get top losing stocks',
},
{
method: 'GET',
path: '/stock_market/actives',
path: '/stable/most-actives',
description: 'Get most active stocks',
},
{
Expand Down
Loading