Settings

Manage your site-level API keys and MCP configuration

Site API Keys

Create API keys to access LotsAgent operations from your applications

Loading...

Usage Example

# Using your API key
curl -X GET https://lotsagent.com/api/v1/agents \
  -H "Authorization: Bearer YOUR_API_KEY"

# Create an agent
curl -X POST https://lotsagent.com/api/v1/agents \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"name": "My Agent", "description": "..."}'