get_exchanges
Retrieve a list of exchanges supported by Polygon.io. Filter results by asset class or locale to access specific market data efficiently.
Instructions
List exchanges known by Polygon.io.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
asset_class | No | ||
locale | No | ||
params | No |
Input Schema (JSON Schema)
{
"properties": {
"asset_class": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Asset Class"
},
"locale": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Locale"
},
"params": {
"anyOf": [
{
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Params"
}
},
"title": "get_exchangesArguments",
"type": "object"
}