Introduction

Welcome to the Explorium Admin guide!! Explorium's platform provides powerful data enrichment and AI-driven insights, enabling businesses to make efficient data-driven decisions. Whether you're managing users, accessing your API keys, or reviewing your subscription, we’ve got you covered!

1. Logging In and Signing Up

Log In or Register:

  1. Go to the Explorium Admin at admin.explorium.ai.
  2. If you’re a new user:
    • Click Sign Up and enter your email.
    • Follow the instructions sent to your email to activate your account.
  3. If you already have an account:
    • Enter your email and password, then click Log In.

💡 Note: Only users with admin privileges can access user management and API settings.


2. Overview Page

Once logged in, you will land on the Overview page, which provides insights into your account usage:

  • Subscription Details: Displays your current plan, start date, and renewal date.
  • Credit Usage: Tracks used and remaining credits.
  • Consumption Report: A detailed breakdown of API usage over time.


📌 Note: Ensure you monitor your credit usage to optimize your API calls and avoid interruptions.


3. User Management

The User Management section allows Admins to manage users:

  • View all registered users with details like email, role, status, and last active date.

  • Add new users by clicking the "Add User" button.

  • Modify or remove user roles (e.g., promote a user to Admin, revoke access, or delete users) via the Actions menu (three-dot icon).

  • Inviting Employees: An Admin can invite employees via the User Management section. An invited employee will receive an email invitation to join the platform and must complete their registration to gain access.


4. API Key Management

The API Key section allows you to manage authentication for your API requests:

  • View and copy your API key securely.
  • Use the API key for integrating with your systems.
  • Refer to our API #Authentication Guide for detailed instructions on how to securely use and manage your API key.

📌 Security Tip: Keep your API keys confidential and never expose them in public repositories.





5. Subscription & Pricing

The Pricing section provides details about your current subscription:

  • Displays your plan type and available credits.

  • Options to purchase additional credits.

  • Contact your account executive for plan upgrades or changes.

    This section is subject to updates as the pricing model evolves.


6. Getting Started with the API

First API Call – Test Your API Key

Once you have your API Key, test it by making a simple API request.

cURL:

curl -X GET "https://api.explorium.ai/v1/example-endpoint" \
     -H "Authorization: Bearer {{apikey}}"

Python:

import requests

url = "https://api.explorium.ai/v1/example-endpoint"
headers = {
    "Authorization": "Bearer {{apikey}}"
}
response = requests.get(url, headers=headers)
print(response.json())

Interactive API Testing

To experiment with different API calls, visit our API Documentation where you can enter your API Key and test endpoints directly.


7. Need Help?

📩 Contact support: support@explorium.ai
📌 Reach out to your account manager for business-related queries.

🚀 You're all set to start using the Explorium Admin!