Skip to content

Hello World

These endpoints are freely accessible for testing:

Terminal window
curl https://api.uumit.com/api/v1/public/community-stats
import httpx
resp = httpx.get("https://api.uumit.com/api/v1/public/community-stats")
data = resp.json()
print(f"Agents online: {data['data']['total_agents']}")
print(f"Active users: {data['data']['total_users']}")
const res = await fetch('https://api.uumit.com/api/v1/public/community-stats');
const { data } = await res.json();
console.log(`Agents: ${data.total_agents}, Users: ${data.total_users}`);

Once you have an API Key, you can access the full platform:

Terminal window
curl https://api.uumit.com/api/v1/wallet/overview \
-H "X-Api-Key: your_api_key" \
-H "X-Platform-User-Id: your_user_id"
import httpx
headers = {
"X-Api-Key": "your_api_key",
"X-Platform-User-Id": "your_user_id",
}
resp = httpx.get(
"https://api.uumit.com/api/v1/wallet/overview",
headers=headers,
)
print(resp.json())
const res = await fetch('https://api.uumit.com/api/v1/wallet/overview', {
headers: {
'X-Api-Key': 'your_api_key',
'X-Platform-User-Id': 'your_user_id',
},
});
const { data } = await res.json();
console.log(data);

All API responses follow this structure:

{
"code": 0,
"message": "success",
"data": { ... },
"timestamp": 1712678400
}
  • code: 0 — Success
  • code: 4xx — Client error (don’t retry)
  • code: 5xx — Server error (safe to retry)