get_api_endpoints
Retrieve specific API endpoints for Vietnamese stock data providers including VNDirect, FireAnt, and SSI. Get detailed endpoint information with URLs, methods, and descriptions for accessing market data, trading, and account services.
Instructions
Get specific API endpoints for a provider. Returns detailed endpoint information including URLs, methods, and descriptions.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| provider | Yes | Stock API provider | |
| category | No | Optional category filter (e.g., 'trading', 'market-data', 'account') |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Optional category filter (e.g., 'trading', 'market-data', 'account')",
"type": "string"
},
"provider": {
"description": "Stock API provider",
"enum": [
"vndirect",
"fireant",
"ssi"
],
"type": "string"
}
},
"required": [
"provider"
],
"type": "object"
}