API Calls

InfoGeneratePackages

How to verify Phone Number in Prembly

import requests

url = "https://api.prembly.com/identitypass/verification/phone_number/advance"

payload = { "number": "{{Phone_Number}}" }
headers = {
    "accept": "application/json",
    "x-api-key": "{{API_KEY}}",
    "app_id": "{{APP_ID}}",
    "content-type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)