├── .gitignore ├── CHANGELOG.md ├── CHANGELOG_CN.md ├── PROD-TERMS-OF-USE.md ├── PROD-TERMS-OF-USE_CN.md ├── README.md ├── README_CN.md ├── enums.md ├── enums_CN.md ├── errors.md ├── errors_CN.md ├── faqs ├── api_key_types.md ├── api_key_types_CN.md ├── commission_faq.md ├── commission_faq_CN.md ├── market_data_only.md ├── market_data_only_CN.md ├── market_orders_faq.md ├── market_orders_faq_CN.md ├── opo.md ├── opo_CN.md ├── order_amend_keep_priority.md ├── order_amend_keep_priority_CN.md ├── order_count_decrement.md ├── order_count_decrement_CN.md ├── pegged_orders.md ├── pegged_orders_CN.md ├── sbe_faq.md ├── sbe_faq_CN.md ├── sor_faq.md ├── sor_faq_CN.md ├── spot_glossary.md ├── spot_glossary_CN.md ├── stp_faq.md ├── stp_faq_CN.md ├── testnet.md ├── trailing-stop-faq.md └── trailing-stop-faq_CN.md ├── filters.md ├── filters_CN.md ├── fix-api.md ├── fix-api_CN.md ├── fix └── schemas │ ├── spot-fix-md.xml │ └── spot-fix-oe.xml ├── rest-api.md ├── rest-api_CN.md ├── sbe-market-data-streams.md ├── sbe-market-data-streams_CN.md ├── sbe └── schemas │ ├── sbe_schema_lifecycle_prod.json │ ├── sbe_schema_lifecycle_testnet.json │ ├── spot-fixsbe-1_0.xml │ ├── spot_1_0.xml │ ├── spot_2_0.xml │ ├── spot_2_1.xml │ ├── spot_3_0.xml │ ├── spot_3_1.xml │ ├── spot_3_2.xml │ ├── spot_fix_prod_latest.xml │ ├── spot_fix_testnet_latest.xml │ ├── spot_prod_latest.xml │ ├── spot_testnet_latest.xml │ └── stream_1_0.xml ├── testnet ├── CHANGELOG.md ├── TESTNET-TERMS-OF-USE.md ├── enums.md ├── errors.md ├── filters.md ├── fix-api.md ├── rest-api.md ├── sbe-market-data-streams.md ├── user-data-stream.md ├── web-socket-api.md └── web-socket-streams.md ├── user-data-stream.md ├── user-data-stream_CN.md ├── web-socket-api.md ├── web-socket-api_CN.md ├── web-socket-streams.md └── web-socket-streams_CN.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CHANGELOG_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/CHANGELOG_CN.md -------------------------------------------------------------------------------- /PROD-TERMS-OF-USE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/PROD-TERMS-OF-USE.md -------------------------------------------------------------------------------- /PROD-TERMS-OF-USE_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/PROD-TERMS-OF-USE_CN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/README_CN.md -------------------------------------------------------------------------------- /enums.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/enums.md -------------------------------------------------------------------------------- /enums_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/enums_CN.md -------------------------------------------------------------------------------- /errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/errors.md -------------------------------------------------------------------------------- /errors_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/errors_CN.md -------------------------------------------------------------------------------- /faqs/api_key_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/faqs/api_key_types.md -------------------------------------------------------------------------------- /faqs/api_key_types_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/faqs/api_key_types_CN.md -------------------------------------------------------------------------------- /faqs/commission_faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/faqs/commission_faq.md -------------------------------------------------------------------------------- /faqs/commission_faq_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/faqs/commission_faq_CN.md -------------------------------------------------------------------------------- /faqs/market_data_only.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/faqs/market_data_only.md -------------------------------------------------------------------------------- /faqs/market_data_only_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/faqs/market_data_only_CN.md -------------------------------------------------------------------------------- /faqs/market_orders_faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/faqs/market_orders_faq.md -------------------------------------------------------------------------------- /faqs/market_orders_faq_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/faqs/market_orders_faq_CN.md -------------------------------------------------------------------------------- /faqs/opo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/faqs/opo.md -------------------------------------------------------------------------------- /faqs/opo_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/faqs/opo_CN.md -------------------------------------------------------------------------------- /faqs/order_amend_keep_priority.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/faqs/order_amend_keep_priority.md -------------------------------------------------------------------------------- /faqs/order_amend_keep_priority_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/faqs/order_amend_keep_priority_CN.md -------------------------------------------------------------------------------- /faqs/order_count_decrement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/faqs/order_count_decrement.md -------------------------------------------------------------------------------- /faqs/order_count_decrement_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/faqs/order_count_decrement_CN.md -------------------------------------------------------------------------------- /faqs/pegged_orders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/faqs/pegged_orders.md -------------------------------------------------------------------------------- /faqs/pegged_orders_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/faqs/pegged_orders_CN.md -------------------------------------------------------------------------------- /faqs/sbe_faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/faqs/sbe_faq.md -------------------------------------------------------------------------------- /faqs/sbe_faq_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/faqs/sbe_faq_CN.md -------------------------------------------------------------------------------- /faqs/sor_faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/faqs/sor_faq.md -------------------------------------------------------------------------------- /faqs/sor_faq_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/faqs/sor_faq_CN.md -------------------------------------------------------------------------------- /faqs/spot_glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/faqs/spot_glossary.md -------------------------------------------------------------------------------- /faqs/spot_glossary_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/faqs/spot_glossary_CN.md -------------------------------------------------------------------------------- /faqs/stp_faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/faqs/stp_faq.md -------------------------------------------------------------------------------- /faqs/stp_faq_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/faqs/stp_faq_CN.md -------------------------------------------------------------------------------- /faqs/testnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/faqs/testnet.md -------------------------------------------------------------------------------- /faqs/trailing-stop-faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/faqs/trailing-stop-faq.md -------------------------------------------------------------------------------- /faqs/trailing-stop-faq_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/faqs/trailing-stop-faq_CN.md -------------------------------------------------------------------------------- /filters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/filters.md -------------------------------------------------------------------------------- /filters_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/filters_CN.md -------------------------------------------------------------------------------- /fix-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/fix-api.md -------------------------------------------------------------------------------- /fix-api_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/fix-api_CN.md -------------------------------------------------------------------------------- /fix/schemas/spot-fix-md.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/fix/schemas/spot-fix-md.xml -------------------------------------------------------------------------------- /fix/schemas/spot-fix-oe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/fix/schemas/spot-fix-oe.xml -------------------------------------------------------------------------------- /rest-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/rest-api.md -------------------------------------------------------------------------------- /rest-api_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/rest-api_CN.md -------------------------------------------------------------------------------- /sbe-market-data-streams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/sbe-market-data-streams.md -------------------------------------------------------------------------------- /sbe-market-data-streams_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/sbe-market-data-streams_CN.md -------------------------------------------------------------------------------- /sbe/schemas/sbe_schema_lifecycle_prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/sbe/schemas/sbe_schema_lifecycle_prod.json -------------------------------------------------------------------------------- /sbe/schemas/sbe_schema_lifecycle_testnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/sbe/schemas/sbe_schema_lifecycle_testnet.json -------------------------------------------------------------------------------- /sbe/schemas/spot-fixsbe-1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/sbe/schemas/spot-fixsbe-1_0.xml -------------------------------------------------------------------------------- /sbe/schemas/spot_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/sbe/schemas/spot_1_0.xml -------------------------------------------------------------------------------- /sbe/schemas/spot_2_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/sbe/schemas/spot_2_0.xml -------------------------------------------------------------------------------- /sbe/schemas/spot_2_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/sbe/schemas/spot_2_1.xml -------------------------------------------------------------------------------- /sbe/schemas/spot_3_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/sbe/schemas/spot_3_0.xml -------------------------------------------------------------------------------- /sbe/schemas/spot_3_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/sbe/schemas/spot_3_1.xml -------------------------------------------------------------------------------- /sbe/schemas/spot_3_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/sbe/schemas/spot_3_2.xml -------------------------------------------------------------------------------- /sbe/schemas/spot_fix_prod_latest.xml: -------------------------------------------------------------------------------- 1 | spot-fixsbe-1_0.xml -------------------------------------------------------------------------------- /sbe/schemas/spot_fix_testnet_latest.xml: -------------------------------------------------------------------------------- 1 | spot-fixsbe-1_0.xml -------------------------------------------------------------------------------- /sbe/schemas/spot_prod_latest.xml: -------------------------------------------------------------------------------- 1 | spot_3_1.xml -------------------------------------------------------------------------------- /sbe/schemas/spot_testnet_latest.xml: -------------------------------------------------------------------------------- 1 | spot_3_2.xml -------------------------------------------------------------------------------- /sbe/schemas/stream_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/sbe/schemas/stream_1_0.xml -------------------------------------------------------------------------------- /testnet/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/testnet/CHANGELOG.md -------------------------------------------------------------------------------- /testnet/TESTNET-TERMS-OF-USE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/testnet/TESTNET-TERMS-OF-USE.md -------------------------------------------------------------------------------- /testnet/enums.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/testnet/enums.md -------------------------------------------------------------------------------- /testnet/errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/testnet/errors.md -------------------------------------------------------------------------------- /testnet/filters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/testnet/filters.md -------------------------------------------------------------------------------- /testnet/fix-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/testnet/fix-api.md -------------------------------------------------------------------------------- /testnet/rest-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/testnet/rest-api.md -------------------------------------------------------------------------------- /testnet/sbe-market-data-streams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/testnet/sbe-market-data-streams.md -------------------------------------------------------------------------------- /testnet/user-data-stream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/testnet/user-data-stream.md -------------------------------------------------------------------------------- /testnet/web-socket-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/testnet/web-socket-api.md -------------------------------------------------------------------------------- /testnet/web-socket-streams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/testnet/web-socket-streams.md -------------------------------------------------------------------------------- /user-data-stream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/user-data-stream.md -------------------------------------------------------------------------------- /user-data-stream_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/user-data-stream_CN.md -------------------------------------------------------------------------------- /web-socket-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/web-socket-api.md -------------------------------------------------------------------------------- /web-socket-api_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/web-socket-api_CN.md -------------------------------------------------------------------------------- /web-socket-streams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/web-socket-streams.md -------------------------------------------------------------------------------- /web-socket-streams_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-spot-api-docs/HEAD/web-socket-streams_CN.md --------------------------------------------------------------------------------