Getting Started

Prerequisites

Before integrating with the Reload API, you'll need:

  1. AI Agent Organization Account: Register your AI agent organization with Reload
  2. Client Credentials: Obtain your unique Client ID and Client Secret
  3. Web Application: A web application or mobile app where users will interact with your AI agent
  4. Webhook Endpoint: A secure endpoint to receive real-time notifications (recommended)
  5. HTTPS: All API communications must use HTTPS

Base URLs


Obtaining Client Credentials

Get your client credentials through the AI Agent Developer Portal:

  1. Visit: developer.withreload.com
  2. Navigate to: OAuth Settings page
  3. Create credentials: Generate your Client ID and Client Secret
    1. Client ID: A unique identifier for your AI agent organization
    2. Client Secret: A secret key used for authentication (keep this secure!)

These credentials are used for all API requests to identify your AI agent organization.

Creating and Managing AI Agents

AI Agents are the core components that process user requests and generate usage reports. Each AI Agent has a unique ID that must be included in all usage reports.

Creating Your First AI Agent

  • Visit: developer.withreload.com/ai-agents
  • Click: "Create New AI Agent" button
  • Fill in details:
  • Save: The AI Agent will be created with a unique ID

Getting AI Agent IDs

After creating AI Agents, you can find their IDs in several ways:

From the AI Agents Page:

  • Go to developer.withreload.com/ai-agents
  • View the list of your AI Agents
  • Copy the ID from the "Agent ID" column

From the AI Agent Details Page:

  • Click on any AI Agent to view its details
  • The ID is displayed at the top of the page
  • Copy the ID for use in your API calls

You can also view a sample implementation of the Reload API and it's usage in our nextjs sample implementation repo.