get_api_documentation_urls
Retrieve official documentation links for Vietnamese stock API providers including VNDirect, FireAnt, and SSI. Access API guides, reference materials, and GitHub repositories to understand integration requirements and implementation details.
Instructions
Get documentation URLs for API providers. Returns links to official API documentation, guides, and GitHub repositories.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| provider | Yes | Stock API provider |
Input Schema (JSON Schema)
{
"properties": {
"provider": {
"description": "Stock API provider",
"enum": [
"vndirect",
"fireant",
"ssi",
"all"
],
"type": "string"
}
},
"required": [
"provider"
],
"type": "object"
}