ticker_details
Pack: polygon-io · Endpoint: https://gateway.pipeworx.io/polygon-io/mcp
Fetch full Polygon.io reference details for a single ticker: company name, description, SIC code, primary exchange, locale, market cap, phone, address, homepage URL, and logo.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
ticker | string | yes |
Example call
Arguments
{
"ticker": "AAPL"
}
curl
curl -X POST https://gateway.pipeworx.io/polygon-io/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ticker_details","arguments":{"ticker":"AAPL"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ticker_details', {
"ticker": "AAPL"
});
Response shape
| Field | Type | Description |
|---|---|---|
status | string | API response status |
results | object | Ticker details |
Full JSON Schema
{
"type": "object",
"properties": {
"status": {
"type": "string",
"description": "API response status"
},
"results": {
"type": "object",
"description": "Ticker details",
"properties": {
"ticker": {
"type": "string",
"description": "Ticker symbol"
},
"name": {
"type": "string",
"description": "Company name"
},
"market": {
"type": "string",
"description": "Market type"
},
"locale": {
"type": "string",
"description": "Locale"
},
"primary_exchange": {
"type": "string",
"description": "Primary exchange"
},
"type": {
"type": "string",
"description": "Asset type"
},
"active": {
"type": "boolean",
"description": "Whether ticker is active"
},
"currency_name": {
"type": "string",
"description": "Currency name"
},
"cik": {
"type": "string",
"description": "CIK number"
},
"composite_figi": {
"type": "string",
"description": "Composite FIGI"
},
"share_class_figi": {
"type": "string",
"description": "Share class FIGI"
},
"homepage_url": {
"type": "string",
"description": "Company homepage"
},
"listing_date": {
"type": "string",
"description": "Listing date"
}
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"polygon-io": {
"url": "https://gateway.pipeworx.io/polygon-io/mcp"
}
}
}
See Getting Started for client-specific install steps.