/marketstack | Type: Application | PCID required: Yes
Tools
marketstack_get_bond_data
Get bond price data Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
symbols | string | Yes | — | Bond symbol |
date_from | string | No | — | Filter from date (YYYY-MM-DD) |
date_to | string | No | — | Filter to date (YYYY-MM-DD) |
limit | integer | No | — | Number of results per page |
offset | integer | No | — | Pagination offset |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"symbols": {
"type": "string",
"description": "Bond symbol"
},
"date_from": {
"type": "string",
"description": "Filter from date (YYYY-MM-DD)"
},
"date_to": {
"type": "string",
"description": "Filter to date (YYYY-MM-DD)"
},
"limit": {
"type": "integer",
"description": "Number of results per page"
},
"offset": {
"type": "integer",
"description": "Pagination offset"
}
},
"required": [
"PCID",
"symbols"
]
}
marketstack_get_cik_code
Get SEC CIK code Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
symbols | string | Yes | — | Stock ticker symbol (e.g. AAPL) |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"symbols": {
"type": "string",
"description": "Stock ticker symbol (e.g. AAPL)"
}
},
"required": [
"PCID",
"symbols"
]
}
marketstack_get_commodities
Get current commodity prices Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
symbols | string | No | — | One or more commodity symbols (e.g. GOLD, SILVER, OIL_WTI) |
limit | integer | No | — | Number of results per page |
offset | integer | No | — | Pagination offset |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"symbols": {
"type": "string",
"description": "One or more commodity symbols (e.g. GOLD, SILVER, OIL_WTI)"
},
"limit": {
"type": "integer",
"description": "Number of results per page"
},
"offset": {
"type": "integer",
"description": "Pagination offset"
}
},
"required": [
"PCID"
]
}
marketstack_get_commodities_history
Get historical commodity prices Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
symbols | string | Yes | — | One or more commodity symbols |
date_from | string | No | — | Filter from date (YYYY-MM-DD) |
date_to | string | No | — | Filter to date (YYYY-MM-DD) |
sort | string | No | — | Sort order |
limit | integer | No | — | Number of results per page |
offset | integer | No | — | Pagination offset |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"symbols": {
"type": "string",
"description": "One or more commodity symbols"
},
"date_from": {
"type": "string",
"description": "Filter from date (YYYY-MM-DD)"
},
"date_to": {
"type": "string",
"description": "Filter to date (YYYY-MM-DD)"
},
"sort": {
"type": "string",
"description": "Sort order",
"enum": [
"ASC",
"DESC"
]
},
"limit": {
"type": "integer",
"description": "Number of results per page"
},
"offset": {
"type": "integer",
"description": "Pagination offset"
}
},
"required": [
"PCID",
"symbols"
]
}
marketstack_get_company_ratings
Get company ratings Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
symbols | string | Yes | — | Stock ticker symbol (e.g. AAPL) |
limit | integer | No | — | Number of results per page |
offset | integer | No | — | Pagination offset |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"symbols": {
"type": "string",
"description": "Stock ticker symbol (e.g. AAPL)"
},
"limit": {
"type": "integer",
"description": "Number of results per page"
},
"offset": {
"type": "integer",
"description": "Pagination offset"
}
},
"required": [
"PCID",
"symbols"
]
}
marketstack_get_dividends
Get dividend data Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
symbols | string | Yes | — | One or more comma-separated stock ticker symbols |
date_from | string | No | — | Filter from date (YYYY-MM-DD) |
date_to | string | No | — | Filter to date (YYYY-MM-DD) |
sort | string | No | — | Sort order |
limit | integer | No | — | Number of results per page |
offset | integer | No | — | Pagination offset |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"symbols": {
"type": "string",
"description": "One or more comma-separated stock ticker symbols"
},
"date_from": {
"type": "string",
"description": "Filter from date (YYYY-MM-DD)"
},
"date_to": {
"type": "string",
"description": "Filter to date (YYYY-MM-DD)"
},
"sort": {
"type": "string",
"description": "Sort order",
"enum": [
"ASC",
"DESC"
]
},
"limit": {
"type": "integer",
"description": "Number of results per page"
},
"offset": {
"type": "integer",
"description": "Pagination offset"
}
},
"required": [
"PCID",
"symbols"
]
}
marketstack_get_end_of_day_data
Get end-of-day stock data Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
symbols | string | Yes | — | One or more comma-separated stock ticker symbols (e.g. AAPL, MSFT) |
date_from | string | No | — | Filter results from this date (format: YYYY-MM-DD) |
date_to | string | No | — | Filter results to this date (format: YYYY-MM-DD) |
exchange | string | No | — | Filter by stock exchange MIC code (e.g. XNAS for NASDAQ) |
sort | string | No | — | Sort order for results |
limit | integer | No | — | Number of results per page (max 1000) |
offset | integer | No | — | Pagination offset |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"symbols": {
"type": "string",
"description": "One or more comma-separated stock ticker symbols (e.g. AAPL, MSFT)"
},
"date_from": {
"type": "string",
"description": "Filter results from this date (format: YYYY-MM-DD)"
},
"date_to": {
"type": "string",
"description": "Filter results to this date (format: YYYY-MM-DD)"
},
"exchange": {
"type": "string",
"description": "Filter by stock exchange MIC code (e.g. XNAS for NASDAQ)"
},
"sort": {
"type": "string",
"description": "Sort order for results",
"enum": [
"ASC",
"DESC"
]
},
"limit": {
"type": "integer",
"description": "Number of results per page (max 1000)"
},
"offset": {
"type": "integer",
"description": "Pagination offset"
}
},
"required": [
"PCID",
"symbols"
]
}
marketstack_get_etf_holdings
Get ETF holdings Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
symbols | string | Yes | — | ETF symbol (e.g. SPY) |
limit | integer | No | — | Number of results per page |
offset | integer | No | — | Pagination offset |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"symbols": {
"type": "string",
"description": "ETF symbol (e.g. SPY)"
},
"limit": {
"type": "integer",
"description": "Number of results per page"
},
"offset": {
"type": "integer",
"description": "Pagination offset"
}
},
"required": [
"PCID",
"symbols"
]
}
marketstack_get_index_info
Get index details Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
symbols | string | Yes | — | Index symbol (e.g. DJI for Dow Jones) |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"symbols": {
"type": "string",
"description": "Index symbol (e.g. DJI for Dow Jones)"
}
},
"required": [
"PCID",
"symbols"
]
}
marketstack_get_intraday_data
Get intraday stock data Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
symbols | string | Yes | — | One or more comma-separated stock ticker symbols (e.g. AAPL, MSFT) |
interval | string | No | — | Data interval |
date_from | string | No | — | Filter results from this date/time (format: YYYY-MM-DD or YYYY-MM-DDTHH:mm:ss+0000) |
date_to | string | No | — | Filter results to this date/time (format: YYYY-MM-DD or YYYY-MM-DDTHH:mm:ss+0000) |
exchange | string | No | — | Filter by stock exchange MIC code |
sort | string | No | — | Sort order for results |
limit | integer | No | — | Number of results per page (max 1000) |
offset | integer | No | — | Pagination offset |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"symbols": {
"type": "string",
"description": "One or more comma-separated stock ticker symbols (e.g. AAPL, MSFT)"
},
"interval": {
"type": "string",
"description": "Data interval",
"enum": [
"1min",
"5min",
"10min",
"15min",
"30min",
"1hour",
"3hour",
"6hour",
"12hour",
"24hour"
]
},
"date_from": {
"type": "string",
"description": "Filter results from this date/time (format: YYYY-MM-DD or YYYY-MM-DDTHH:mm:ss+0000)"
},
"date_to": {
"type": "string",
"description": "Filter results to this date/time (format: YYYY-MM-DD or YYYY-MM-DDTHH:mm:ss+0000)"
},
"exchange": {
"type": "string",
"description": "Filter by stock exchange MIC code"
},
"sort": {
"type": "string",
"description": "Sort order for results",
"enum": [
"ASC",
"DESC"
]
},
"limit": {
"type": "integer",
"description": "Number of results per page (max 1000)"
},
"offset": {
"type": "integer",
"description": "Pagination offset"
}
},
"required": [
"PCID",
"symbols"
]
}
marketstack_get_stock_price
Get current stock price Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
symbols | string | Yes | — | One or more comma-separated stock ticker symbols (e.g. AAPL, MSFT) |
exchange | string | No | — | Filter by stock exchange MIC code |
limit | integer | No | — | Number of results per page |
offset | integer | No | — | Pagination offset |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"symbols": {
"type": "string",
"description": "One or more comma-separated stock ticker symbols (e.g. AAPL, MSFT)"
},
"exchange": {
"type": "string",
"description": "Filter by stock exchange MIC code"
},
"limit": {
"type": "integer",
"description": "Number of results per page"
},
"offset": {
"type": "integer",
"description": "Pagination offset"
}
},
"required": [
"PCID",
"symbols"
]
}
marketstack_get_stock_splits
Get stock split data Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
symbols | string | Yes | — | One or more comma-separated stock ticker symbols |
date_from | string | No | — | Filter from date (YYYY-MM-DD) |
date_to | string | No | — | Filter to date (YYYY-MM-DD) |
sort | string | No | — | Sort order |
limit | integer | No | — | Number of results per page |
offset | integer | No | — | Pagination offset |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"symbols": {
"type": "string",
"description": "One or more comma-separated stock ticker symbols"
},
"date_from": {
"type": "string",
"description": "Filter from date (YYYY-MM-DD)"
},
"date_to": {
"type": "string",
"description": "Filter to date (YYYY-MM-DD)"
},
"sort": {
"type": "string",
"description": "Sort order",
"enum": [
"ASC",
"DESC"
]
},
"limit": {
"type": "integer",
"description": "Number of results per page"
},
"offset": {
"type": "integer",
"description": "Pagination offset"
}
},
"required": [
"PCID",
"symbols"
]
}
marketstack_get_ticker_info
Get detailed ticker information Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
symbols | string | Yes | — | Ticker symbol (e.g. AAPL) |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"symbols": {
"type": "string",
"description": "Ticker symbol (e.g. AAPL)"
}
},
"required": [
"PCID",
"symbols"
]
}
marketstack_list_bonds
List available bonds Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
search | string | No | — | Search query to filter bonds |
limit | integer | No | — | Number of results per page |
offset | integer | No | — | Pagination offset |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"search": {
"type": "string",
"description": "Search query to filter bonds"
},
"limit": {
"type": "integer",
"description": "Number of results per page"
},
"offset": {
"type": "integer",
"description": "Pagination offset"
}
},
"required": [
"PCID"
]
}
marketstack_list_currencies
List supported currencies Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
limit | integer | No | — | Number of results per page |
offset | integer | No | — | Pagination offset |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"limit": {
"type": "integer",
"description": "Number of results per page"
},
"offset": {
"type": "integer",
"description": "Pagination offset"
}
},
"required": [
"PCID"
]
}
marketstack_list_etfs
List available ETFs Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
search | string | No | — | Search query to filter ETFs |
limit | integer | No | — | Number of results per page |
offset | integer | No | — | Pagination offset |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"search": {
"type": "string",
"description": "Search query to filter ETFs"
},
"limit": {
"type": "integer",
"description": "Number of results per page"
},
"offset": {
"type": "integer",
"description": "Pagination offset"
}
},
"required": [
"PCID"
]
}
marketstack_list_exchanges
List stock exchanges Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
search | string | No | — | Search query to filter exchanges by name or MIC code |
limit | integer | No | — | Number of results per page |
offset | integer | No | — | Pagination offset |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"search": {
"type": "string",
"description": "Search query to filter exchanges by name or MIC code"
},
"limit": {
"type": "integer",
"description": "Number of results per page"
},
"offset": {
"type": "integer",
"description": "Pagination offset"
}
},
"required": [
"PCID"
]
}
marketstack_list_indexes
List stock market indexes Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
search | string | No | — | Search query to filter indexes |
limit | integer | No | — | Number of results per page |
offset | integer | No | — | Pagination offset |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"search": {
"type": "string",
"description": "Search query to filter indexes"
},
"limit": {
"type": "integer",
"description": "Number of results per page"
},
"offset": {
"type": "integer",
"description": "Pagination offset"
}
},
"required": [
"PCID"
]
}
marketstack_list_tickers
List all available tickers Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
exchange | string | No | — | Filter by stock exchange MIC code |
limit | integer | No | — | Number of results per page |
offset | integer | No | — | Pagination offset |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"exchange": {
"type": "string",
"description": "Filter by stock exchange MIC code"
},
"limit": {
"type": "integer",
"description": "Number of results per page"
},
"offset": {
"type": "integer",
"description": "Pagination offset"
}
},
"required": [
"PCID"
]
}
marketstack_list_timezones
List supported timezones Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
limit | integer | No | — | Number of results per page |
offset | integer | No | — | Pagination offset |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"limit": {
"type": "integer",
"description": "Number of results per page"
},
"offset": {
"type": "integer",
"description": "Pagination offset"
}
},
"required": [
"PCID"
]
}
marketstack_search_tickers
Search for tickers Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
search | string | No | — | Search query to filter tickers by symbol or name |
exchange | string | No | — | Filter by stock exchange MIC code |
limit | integer | No | — | Number of results per page |
offset | integer | No | — | Pagination offset |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"search": {
"type": "string",
"description": "Search query to filter tickers by symbol or name"
},
"exchange": {
"type": "string",
"description": "Filter by stock exchange MIC code"
},
"limit": {
"type": "integer",
"description": "Number of results per page"
},
"offset": {
"type": "integer",
"description": "Pagination offset"
}
},
"required": [
"PCID"
]
}

