alpari.py 513 B

12345678910111213141516
  1. from db0mb3r.services.service import Service
  2. class Alpari(Service):
  3. async def run(self):
  4. await self.post(
  5. "https://alpari.com/api/en/protection/deliver/2f178b17990ca4b7903aa834b9f54c2c0bcb01a2/",
  6. headers={"Referer": "https://alpari.com/en/registration/"},
  7. json={
  8. "client_type": "personal",
  9. "email": self.email,
  10. "mobile_phone": self.formatted_phone,
  11. "deliveryOption": "sms",
  12. },
  13. )