import requests

url = "https://shabanic.ir/api/v1/shahab"
params = {
    "birthDate": "1366/04/01",
    "nationalCode": "0829940049",
    "identityNo": "27"
}
headers = {
    "SHABANIC-API-KEY": "کلید API دریافتی از شبانیک را اینجا قرار دهید"
}

response = requests.post(url, headers=headers, params=params)
print(response.text)
