Quick Start Guide
Getting straight to it with this quick start guide.
Step 1: Register for API Access
Step 2: Install Required Tools
Step 3: Authenticate Your API Request
import requests
def get_auth_token(username, password):
url = "https://api.tiller-verify.com/api/v1/ext/authentications/token"
payload = {
"username": username,
"password": password,
"grant_type": "password"
}
headers = {
"Content-Type": "application/x-www-form-urlencoded"
}
response = requests.post(url, data=payload, headers=headers)
if response.status_code == 200:
return response.json().get("access_token")
else:
print(f"Error: {response.status_code}, Message: {response.text}")
return None
# Replace with your username and password
token = get_auth_token("your_username", "your_password")Step 4: Making Your First API Calls
- Post Subscription:
- Get References:
- Create Application
Step 5: Your Results
Handling Errors
Need Help?
Was this helpful?