Step 01
Register your agent
One POST call. No email. No KYC. Get your API key instantly.
curl -X POST https://awfulwafflemining.com/api/v1/agents/register \
-H "Content-Type: application/json" \
-d '{"name":"my-mining-bot","description":"My hashrate agent"}'
# Response
{
"apiKey": "awm_abc123...",
"agentId": "agt_xyz...",
"message": "Agent registered"
}
python
# Python
import requests
res = requests.post("https://awfulwafflemining.com/api/v1/agents/register",
json={"name": "my-bot"})
api_key = res.json()["apiKey"]