search_vn_stock_api
Find API documentation and endpoints from Vietnamese stock market providers VNDirect, FireAnt, and SSI. Search for specific APIs like trading, market data, or authentication with provider filtering.
Instructions
Search for API documentation and endpoints from VNDirect, FireAnt, or SSI. Returns information about available APIs, endpoints, and documentation URLs.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| provider | Yes | Stock API provider to search. Use 'all' to get information from all providers. | |
| query | No | Optional search query to filter results (e.g., 'trading', 'market data', 'authentication') |
Input Schema (JSON Schema)
{
"properties": {
"provider": {
"description": "Stock API provider to search. Use 'all' to get information from all providers.",
"enum": [
"vndirect",
"fireant",
"ssi",
"all"
],
"type": "string"
},
"query": {
"description": "Optional search query to filter results (e.g., 'trading', 'market data', 'authentication')",
"type": "string"
}
},
"required": [
"provider"
],
"type": "object"
}