How to accept cryptocurrency payments on your Django site? [closed]

I am creating a site in Python/Dajngo, which will be completely paid. To use the site, the user will have to pay for a monthly subscription. I want to accept payments in crypto to my wallet. If you give users a wallet address, it will be impossible to understand which user paid for the subscription. We need to somehow differentiate this. How can I implement such functionality without using third-party services? Perhaps, using the API of the exchange where I am going to accept payments, I can somehow implement this, but I am not yet so familiar with the API, for example, Bybit or Binance. Maybe there are some libraries in Python.

I don't know any exchange API for creating such functionality.

Back to Top