API Reference
The MadKudu API allows you to lookup predictive informations for a lead.
Our full API reference is available at https://developers.madkudu.com
Getting your API Key
You can obtain your MadKudu API key by following the steps below.
a. Click on “Integrations” in the left tab
b. Click on the “API” connector
You will find your API Key on the next page:
F.A.Q
Who has access to an API key for MadKudu?
All users of MadKudu, regardless of their pricing plan, have access to an API key.
What are the different possible values of the API properties?

MadKudu uses Clearbit as an enrichment partner. The values of their enrichment are defined here.
Why is my API key not working in my command prompt?
Per our documentation, you will need to encode your API key, which you can do by using a Base64 encoding algorithm or by using a website.
You can use the following Python code to encode your API key:
import base64
api_key = "your_api_key_here"
encoded_key = base64.b64encode(api_key.encode("utf-8")).decode("utf-8")
print(encoded_key)
Or you can use the following website: https://www.base64encode.org/