Get your API key in 10 seconds — no approval needed:
curl -X POST https://api.loopuman.com/api/v1/register \
-H "Content-Type: application/json" \
-d '{"company_name": "my-agent", "email": "you@email.com"}'
Then use it with any AI agent framework:
# MCP (Claude, Copilot, Cursor)
npm install -g loopuman-mcp
# Python (LangChain, CrewAI, AutoGen)
pip install loopuman
# Direct API
curl -X POST https://api.loopuman.com/api/v1/tasks/sync \
-H "X-API-Key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"title": "Verify claim", "description": "Is the sky blue?", "budget": 25}'