{
  "openapi": "3.0.1",
  "info": {
    "title": "AKShare Financial Data",
    "description": "Collect bounded stock, futures, options, fund, FX, convertible-bond, index, and crypto datasets through eight approved AKShare interfaces with flattened rows and separate run audits.",
    "version": "0.0",
    "x-build-id": "WiHq2kFwoz8hb89d2"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/research_master~akshare-financial-data/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-research_master-akshare-financial-data",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/research_master~akshare-financial-data/runs": {
      "post": {
        "operationId": "runs-sync-research_master-akshare-financial-data",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/research_master~akshare-financial-data/run-sync": {
      "post": {
        "operationId": "run-sync-research_master-akshare-financial-data",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "properties": {
          "catalogOnly": {
            "title": "Return only the interface catalog",
            "type": "boolean",
            "description": "Save the complete runtime catalog to the default Key-Value Store as CATALOG and skip all data requests. Enable this first if you do not yet know the exact interface name or parameters.",
            "default": false
          },
          "requests": {
            "title": "AKShare interface requests",
            "minItems": 0,
            "maxItems": 10,
            "type": "array",
            "description": "Configure up to 10 sequential interface calls. The example collects a small A-share daily-price range for Ping An Bank (SZ000001). Replace the interface, symbol, dates, and parameters for your use case.",
            "items": {
              "type": "object",
              "additionalProperties": false,
              "properties": {
                "interfaceName": {
                  "title": "AKShare interface name",
                  "type": "string",
                  "description": "Exact exported function name from CATALOG, for example stock_zh_a_hist_tx, stock_financial_report_sina, fund_open_fund_info_em, or macro_china_gdp.",
                  "pattern": "^[a-z][a-z0-9_]{1,127}$",
                  "editor": "textfield"
                },
                "arguments": {
                  "title": "Positional arguments",
                  "type": "array",
                  "description": "Optional JSON values passed positionally in order. Prefer named parameters because they remain easier to review when an AKShare signature changes.",
                  "editor": "json",
                  "maxItems": 25,
                  "default": []
                },
                "parameters": {
                  "title": "Named parameters",
                  "type": "object",
                  "description": "JSON object passed as keyword arguments. Names, symbol formats, dates, and required values must match the selected interface's signature in CATALOG.",
                  "editor": "json",
                  "additionalProperties": true,
                  "default": {}
                },
                "nativeParameters": {
                  "title": "Use the native AKShare signature",
                  "type": "boolean",
                  "description": "For one of the eight curated presets, bypass the simpler Actor adapter and call the exact AKShare signature. Leave disabled unless you deliberately need native parameters; all other interfaces already use their native signature.",
                  "default": false
                },
                "maxRows": {
                  "title": "Maximum rows for this request",
                  "type": "integer",
                  "description": "Maximum Dataset rows emitted by this request. Rows stay in source order and are truncated only after AKShare returns; RUN_AUDIT records both fetched and emitted counts.",
                  "default": 1000,
                  "minimum": 1,
                  "maximum": 5000,
                  "editor": "number"
                }
              },
              "required": [
                "interfaceName"
              ]
            },
            "default": [
              {
                "interfaceName": "stock_zh_a_hist_tx",
                "parameters": {
                  "symbol": "sz000001",
                  "start_date": "20240102",
                  "end_date": "20240105",
                  "adjust": ""
                },
                "maxRows": 100
              }
            ]
          },
          "maxTotalRows": {
            "title": "Maximum rows for the run",
            "minimum": 1,
            "maximum": 10000,
            "type": "integer",
            "description": "Hard Dataset-row cap across all requests. Later requests stop when this limit is reached. Each successful Dataset row is one billable Result event under the current pricing model.",
            "default": 5000
          },
          "requestTimeoutSecs": {
            "title": "Timeout per request (seconds)",
            "minimum": 15,
            "maximum": 300,
            "type": "integer",
            "description": "Maximum wait for one upstream AKShare interface call before it is recorded as timed out.",
            "default": 90
          },
          "maxRetries": {
            "title": "Retries per request",
            "minimum": 0,
            "maximum": 2,
            "type": "integer",
            "description": "Retry transient interface errors up to this many times. A timed-out background call is not retried because it may still be finishing outside the main coroutine.",
            "default": 1
          },
          "requestDelayMs": {
            "title": "Delay between requests (ms)",
            "minimum": 0,
            "maximum": 10000,
            "type": "integer",
            "description": "Pause between separate AKShare interface calls to reduce pressure on upstream sources.",
            "default": 500
          },
          "failFast": {
            "title": "Stop after the first failed request",
            "type": "boolean",
            "description": "When disabled, later requests continue and every error is recorded in RUN_AUDIT. Enable when later requests should not run after an earlier dependency fails.",
            "default": false
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_UNBLOCKER_UNITS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_UNBLOCKER_UNITS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}