All
FAQ
Announcements
Product documents
How can I do spot trading with the Jupyter Notebook?
Learn more on how to read our available trading pairs and refer to the code below. 1 import okx.Account as Account 2 3 # API initialization 4 apikey = "YOUR_API_KEY" 5 secretkey = "YOUR_SECRET_KEY" 6 passphrase = "YOUR_PASSPHRASE" 7 8 flag = "1" # Production trading: 0, Demo trading: 1 9 10 accountAPI = Account.AccountAPI(apikey, secretkey, passphrase, False, flag) 11 12 result = accountAPI.get_instruments(instType="SPOT") 13 print(result)7. How can I read my account balance?Published on 29 Sept 2023Updated on 10 Sept 2025544Passkey FAQ
Each account can only be bound to one passkey.11. Why don't I see 'Use Passkey' or the authentication pop-up on my iPhone? This is usually caused by an incorrect AutoFill & Passwords configuration. Go to Settings > General > AutoFill & Passwords and make sure Passwords is turned on and Authenticator is turned off.12. Why did my passkey stop working after reinstalling the Android app? On Android, uninstalling and reinstalling the app clears local security data, including your passkeys.Published on 19 Mar 2025Updated on 4 Mar 2026116A beginner's guide to identity verification
To verify your address, you must use a supported document as listed in the answer above.11. I don't know how much I plan to deposit. Can I change my estimated amount later? No. We are collecting your estimated amount as a reference point and we understand that your use of the platform may change later.12. How do I check my identity verification information?Published on 25 Sept 2023Updated on 25 Mar 20266,452How do I open an SMSF account on OKX?
This does not include transfer of funds to exchange from SMSF bank account.11. Does my SMSF need a bank account before applying? Yes, a valid SMSF bank account is required before onboarding to receive and verify deposits.12. Do all SMSF trustees need to complete ID verification? Yes, each trustee or director of the corporate trustee must pass identity verification to comply with AML/CTF obligations.13. Is there a minimum deposit for SMSF accounts? No minimum deposit is required.14.Published on 2 July 2025Updated on 3 Dec 2025How do I make a withdrawal? (app)
If you do not encounter a verification request when withdrawing funds, please check if you have added the recipient's address to your withdrawal whitelist.11. Why do some assets require a tag/memo during withdrawal? Some assets require a tag/memo, which is usually a string of numbers. For example, for XRP, after filling in the withdrawal address, the tag must also be filled in, otherwise assets may be lost.12. How do I withdraw crypto from a sub-account?Published on 22 Aug 2023Updated on 19 Mar 20265,799X Layer upgrade and OKT/OKB asset handling FAQ
The platform will automatically convert your OKT to OKB based on the average closing prices between July 13 and August 12, 2025.The current price of OKB is relatively high. Why not exchange OKB for OKT at this price? Starting from August 15, 2025, OKT held by users will be automatically converted to an equivalent amount of OKB based on the average closing prices of OKB and OKT on the platform from July 13 to August 12, 2025.Published on 13 Aug 2025Updated on 29 Jan 202627How do I set up a recurring buy plan?
If you create a weekly plan at 11:05 AM on Tuesday, your future orders will be completed every Tuesday at 11:05 AM. You can check the date of your next order with your plan details.3. How do I manage my recurring buy plan? You can manage your plan easily from your plan details. Go to the Activity page and you'll find Recurring buy option on top of the page. Select Recurring buy to view all the plans you've set up.Published on 23 Jan 2025Updated on 31 Dec 202550World Cup VIP Exclusive Gift Set FAQ
VIPs may submit their delivery address, Customization Name and Number on the football Jersey from March 25, 2026 at 12:00PM (UTC+8) to March 31, 2026 at 12:00PM (UTC+8). Notes: Only verified VIP users are eligible. Trial VIP accounts aren't eligible for the World Cup VIP Exclusive Gift Set. Submit your shipping information on time: Please provide an accurate delivery address before the deadline specified above.Published on 19 Dec 2025Updated on 26 Mar 2026297What are Source of Funds (SoF) and Source of Wealth (SoW)?
income (past 12 months) Accountant Letter Issued within the last 3 months with business ownership confirmation Distribution Record Shows recent profit withdrawals or distributions Others Issued within the last 3 months with compensation or business ownership confirmation Investment returns Investment Account Statement Issued within the last 3 months Retirement Account Statement Issued within the last 3 months Brokerage Statement Issued within the last 3 months Bank Statement Shows investment incomePublished on 24 Dec 2024Updated on 4 Mar 2026725How do I use the custom interval feature?
Go to the Trading page Hover on the arrow besides the Candles option, and select the interval selector above the trading chart Scroll down and select Custom interval from the available options Select Custom Interval within the list of interval periods available Enter your preferred time interval (for example, 3 minutes, 12 hours, or any custom setting) Fill in the custom time interval as you wish Confirm your selection, and the chart will adjust accordinglyHow does the custom interval feature helpPublished on 5 Mar 2025Updated on 10 Sept 20255How do I download my account statements?
The record time is based on the UTC time zone, with 00:00 as the default cutoff time On app, only account statement records from the past 12 months are available for download. Downloading account statements from specific data is not supported at this time. Select download to download the statementI want to download account statements with full address To download your statements with a full address, please follow the steps here.Published on 6 Nov 2024Updated on 4 Mar 202673Unseen City Shirts - Blue Moon - NFT FAQ
Utility is a Web 3 term for special access to products, services, and platforms given to users who hold a certain NFT.11. Which jurisdictions are restricted from claiming the Unseen City Shirts – Blue Moon NFTs? Residents of Australia, the Bahamas, Bangladesh, Belgium, Bolivia, Brazil, Canada, China, Crimea, Cuba, Donetsk, Hong Kong, India, Iran, Iraq, Italy, Luhansk, Malaysia, Malta, Mexico, North Korea, Philippines, Singapore, Syria, Russia, Thailand, the Netherlands, Ukraine.Published on 25 Apr 2024Updated on 4 Dec 20252Crypto profit & loss analysis (PnL) FAQ
Yes, the unrealized PnL and margins of crypto-based Perpetual/Futures will affect the number of positions currently held and will be included in the calculation of the PnL analysis.11. What are the average cost price and cumulative cost price? The cumulative cost price includes both unrealized PnL and realized PnL when calculating returns.Published on 22 Aug 2023Updated on 3 Mar 2026103What onboarding information is required for a family office?
Certificate of Incorporation or Business Registration Certificate (or equivalent official document, such as a business license) Articles of Association Registration of Directors Registration of Shareholders or Beneficial Ownership Chart (must be signed and dated within the past 12 months) Proof of Business Address (if different from the registered address) Provide identifying information Provide identifying information for the family office, such as your institution’s legal full name, registrationPublished on 13 Oct 2023Updated on 12 Feb 202667How can I do derivatives trading with the Jupyter Notebook?
result = tradeAPI.get_order_list() print(result)11. How can I get order history for derivatives trading with the Jupyter Notebook via Get order history (last 7 days) and Get order history (last 3 months)? # Get order history (last 7 days) result = tradeAPI.get_orders_history( instType = "SWAP" ) print(result) # Get order history (last 3 months) result = tradeAPI.get_orders_history_archive( instType = "SWAP" ) print(result)12.Published on 28 Sept 2023Updated on 12 Feb 2026194