FAQ

Q: What is the AffX API?

A: It is the official API service provided by AffX.ai. You can easily use it in Python with the same functionality as the AffX web version.

Q: Can AffX API only be called via 🐍Python?

A: Yes.

Q: Do I need programming experience to use it?

A: No, you don't need programming experience. All functions provide examples and simple, easy-to-understand calling methods. You can also use the AI on the right side of this page to quickly generate call code and copy it to run with one click.

Q: Do I need to pay to use AffX API?

A: Except for the generate (gen) and update (upd) functions, all other calls are free. For the generate and update functions, just like the AffX web version, we provide a transparent and public billing method. You still need to purchase quota in advance to call AffX's generate and update functions in Python.

Q: Must I fill in the API key?

A: Yes. you must fill in your API key via affx.key(""), otherwise you cannot call the AffX API. You need to log in first before you can create a key.

Q: Where can I find all supported functions and their calling methods?

A: You can browse the documentation section in the left navigation bar, where each feature includes its function calls, parameters, and examples. Alternatively, you can check the function overview for quick reference.

Q: What kind of network environment should I use to call AffX?

A: A network environment that can access websites such as YouTube and X.

Q: What does it mean when "Network Error, Please Try Again." is displayed?

A: Check your network connection. If you are using a VPN, try changing the proxy.

Quick network test (run in the command line): python -c "import requests; print(requests.get('https://github.com', timeout=5).status_code)"

If it returns 200, the network environment is working properly.