Developer Hub

Build with Smoo AI

Integrate AI-powered customer support, configuration management, knowledge bases, and testing infrastructure into your applications with our comprehensive REST API.

Get Started in Minutes

Three steps to your first API call.

1

Create an account

Sign up for Smoo AI and create an organization from the dashboard.

2

Generate API credentials

Create an OAuth 2.0 client from Settings > API Keys to get your client ID and secret.

3

Make your first request

Authenticate and start calling the API to manage agents, config, knowledge, and more.

Quick Example

# 1. Get an access token
curl -X POST https://auth.smoo.ai/token \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -d "grant_type=client_credentials" \
  -d "client_id=YOUR_CLIENT_ID" \
  -d "client_secret=YOUR_CLIENT_SECRET"

# 2. Use the token to list your organizations
curl https://api.smoo.ai/organizations \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"