├── .gitignore ├── CHANGELOG.md ├── CHANGELOG_CN.md ├── README.md ├── README_CN.md ├── errors.md ├── errors_CN.md ├── margin-api.md ├── rest-api.md ├── rest-api_CN.md ├── user-data-stream.md ├── user-data-stream_CN.md ├── wapi-api.md ├── wapi-api_CN.md ├── web-socket-streams.md └── web-socket-streams_CN.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinanceAPItest/binance-official-api-docs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CHANGELOG_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinanceAPItest/binance-official-api-docs/HEAD/CHANGELOG_CN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinanceAPItest/binance-official-api-docs/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinanceAPItest/binance-official-api-docs/HEAD/README_CN.md -------------------------------------------------------------------------------- /errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinanceAPItest/binance-official-api-docs/HEAD/errors.md -------------------------------------------------------------------------------- /errors_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinanceAPItest/binance-official-api-docs/HEAD/errors_CN.md -------------------------------------------------------------------------------- /margin-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinanceAPItest/binance-official-api-docs/HEAD/margin-api.md -------------------------------------------------------------------------------- /rest-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinanceAPItest/binance-official-api-docs/HEAD/rest-api.md -------------------------------------------------------------------------------- /rest-api_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinanceAPItest/binance-official-api-docs/HEAD/rest-api_CN.md -------------------------------------------------------------------------------- /user-data-stream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinanceAPItest/binance-official-api-docs/HEAD/user-data-stream.md -------------------------------------------------------------------------------- /user-data-stream_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinanceAPItest/binance-official-api-docs/HEAD/user-data-stream_CN.md -------------------------------------------------------------------------------- /wapi-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinanceAPItest/binance-official-api-docs/HEAD/wapi-api.md -------------------------------------------------------------------------------- /wapi-api_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinanceAPItest/binance-official-api-docs/HEAD/wapi-api_CN.md -------------------------------------------------------------------------------- /web-socket-streams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinanceAPItest/binance-official-api-docs/HEAD/web-socket-streams.md -------------------------------------------------------------------------------- /web-socket-streams_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinanceAPItest/binance-official-api-docs/HEAD/web-socket-streams_CN.md --------------------------------------------------------------------------------