Skip to main content
  1. Automated Setup: Use this function user_signupto send your sign-up request. It will immediately return your API key and automatically save it to a local config.txt file. After signing up, email team@sumtyme.ai for account activation.
  2. Manual Sign-up: Alternatively, you can use this form. We will then contact you via email with your API key and setup instructions.

To get started, you will need to install the sumtyme client library and then use the user_signup function to register and receive your API key.
# You can install this package via pip.
pip install sumtyme

Python Code Example

from sumtyme import EIPClient

# Initialise EIPClient
client = EIPClient(apikey=None)

# Register a new user and get your API key
signup_result = client.user_signup(payload={
    "email": "name@example.com",
    "password": "min_password_length_8",
    "confirm_password":"min_password_length_8"
})
After the function runs, your API key will be automatically saved in a new config.txt file. config.txt file structure:
apikey="your-api-key-here"
I