Register directly on mosscomputing.com. Get your access token.
You are the customer. You govern your own AI agents.
As a direct customer, you register on mosscomputing.com and get a customer account. You use your access token to register agents, create policies, and sign actions. There is no partner in the middle.
Step 1
Register
Step 2
Verify email
Step 3
Login
Step 4
Sign actions
const response = await fetch('https://api.mosscomputing.com/v1/auth/register', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
email: 'you@acme.com',
password: 'your-secure-password',
product: 'platform',
}),
});
const account = await response.json();{
"message": "Account created. Check your email to verify.",
"org_id": "d0ddcd43-eeab-4e49-bc9b-f99cf255a44b"
}const response = await fetch('https://api.mosscomputing.com/v1/auth/login', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
email: 'you@acme.com',
password: 'your-secure-password',
}),
});
const { access_token } = await response.json();
// Use as: Authorization: Bearer <access_token>{
"access_token": "eyJhbGciOi...",
"token_type": "bearer",
"expires_in": 3600
}You now have: