Once you’ve signed up, you’ll need to add your card details on the billing page.

Simply press GO TO PORTAL, then Add payment method, and then your $10 free credits will then be unlocked 💸

Going forward, you then only have to manage the balance for your Unify account, and we handle the spending with each provider behind the scenes.

You can see your balance, top-up your balance, and set automatic refills on the billing page.

You can also get your current credit balance with the following HTTP request:

curl -X 'GET' \
    'https://api.unify.ai/v0/credits' \
    -H 'accept: application/json' \
    -H "Authorization: Bearer $UNIFY_KEY"

which will return something like:

{
    "id": "your_user_id",
    "credits": 232.32
}

This is also supported in our Python client:

import unify
credits = unify.utils.get_credits()

That’s it, you’re now ready to dive in and learn more about the platform 🤿