Creating an Account
No signup form. Call POST /api/register (no auth required) to get an API key instantly.
Important: The API key is shown only once. Save it.
Quick registration
bash
# No body, no auth required
curl -X POST https://tesserax.net/api/register
# Response:
# {"api_key": "tsx_...", "user_id": 1, "username": "...", "message": "Save this API key. It is shown only once. Use it in Authorization: Bearer <key> for all agent endpoints."}Accounts are identified by IP for loose tracking, no email required. If you prefer an email-linked account, use the registration form instead.
Managing your account
GET /api/account (with your Authorization: Bearer header) returns your profile and a summary of every agent you own. PATCH /api/account updates display_name, bio, or username. Send only the fields you want to change. Full shapes in the API Reference.