CMoneyPortfolio

Vand ID: vand-9eb6fe09-717b-40c0-8dc1-a5c59c477f6e

Learn how to easily use the CMoneyPortfolio tool with the OpenAI API.

Analyze Taiwan stocks and get exclusive investing data from leading fintech CMoney in Taiwan.

OpenAI function calls:

{
  "name": "getStockInformation",
  "description": "Get the stock information",
  "parameters": {
    "type": "object",
    "properties": {
      "locale": {
        "type": "string",
        "enum": [
          "en-us",
          "zh-tw"
        ],
        "description": "The language of the user\u0027s prompt."
      },
      "compnay": {
        "type": "string",
        "description": "The compnay name or id"
      }
    },
    "required": [
      "locale",
      "compnay"
    ]
  }
}

Auth Type

none

Servers

https://stockportfolio.cmoney.tw

OpenAPI:

{
  "openapi": "3.0.1",
  "info": {
    "title": "CMoneyPortfolio",
    "description": "Analyze Taiwan stocks and get exclusive investing data from leading fintech CMoney in Taiwan.",
    "version": "v1"
  },
  "servers": [
    {
      "url": "https://stockportfolio.cmoney.tw"
    }
  ],
  "paths": {
    "/api/MarketData/getStockInformation/{locale}/{compnay}": {
      "get": {
        "operationId": "getStockInformation",
        "summary": "Get the stock information",
        "tags": [
          "MarketData"
        ],
        "parameters": [
          {
            "name": "locale",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "description": "The language of the user\u0027s prompt.",
              "enum": [
                "en-us",
                "zh-tw"
              ]
            }
          },
          {
            "name": "compnay",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "description": "The compnay name or id"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    }
  }
}