Demo Token

Token:

This token gives you access to the specific endpoints for which you subscribed

"contact_us_to_request_your_token"

Example:

import requests 

# A user is granted a token, such as: 
token = "contact_us_to_request_your_token"

# This token gives you access to the specific endpoints for which you subscribed
headers = {'Authorization': 'Bearer ' + token} 

url = "http://www.genify.ai/api/v1.0/txn-data/?description=starbucks&amount=45" 
response = requests.get (url, headers=headers) 

Last updated