Manage your site-level API keys and MCP configuration
Create API keys to access LotsAgent operations from your applications
# 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": "..."}'