π¨βπ»JWT Token API
If you are using our trial pack then you will need this token in order to access the /free endpoint.
Guide
Usage
curl -X POST \
-H "Content-Type: application/json" \
-d '{
"username": "your_username",
"password": "your_password"
}' \
https://api.makcorps.com/auth
import requests
import json
url = "https://api.makcorps.com/auth"
payload = {
"username": "your_username",
"password": "your_password"
}
headers = {
"Content-Type": "application/json"
}
response = requests.post(url, data=json.dumps(payload), headers=headers)
# Print the response
print(response.json())