Keystore Hive Accounts

For the full documentation, visit the GitLab repo.


Signup a User with Keystore

Create a new Hive account using a reCAPTCHA token and keystore keys.

  • URL: https://inleo.io/leoinfra/auth/signup

  • Method: POST

  • Content-Type: application/json

  • Description: Registers a new user with reCAPTCHA verification and saves minimal data.

Request Payload

{
  "username": "yourusername",
  "keys": {
    "active": "STM6md43Ppdtkf1qDGMWtLvznbBfXxyaoRHbuRMyq1Ln7G8gWBMSu",
    "owner": "STM6Kfyb9WSL4BFRnfEDAzNbkMnCccvmzyNKB8xhCMBuq5ADt8aM3",
    "posting": "STM4zWK4DwDuSuTu1GWXd7WHgpiv6nTEHmCrmS5oJybmSmXybZv7a",
    "memo": "STM7q4vYvneQDzsRhvvXyhdA3NCTrq3GJBnBFGhTf2qcyQQSqc4AM"
  },
  "referral": "optional-referral-username",
  "token": "recaptcha-token",
  "addresses": {
    "email": "[email protected]"
  }
}
  • username: Desired Hive username.

  • keys: Public keys for the Hive account.

  • referral: Optional referral username.

  • token: reCAPTCHA token from Google reCAPTCHA.

  • addresses: Optional key-value pairs (e.g., email).

Client Key + Whitelisting

To finish the integration for Keystore, reach out to the INLEO team (info above) to request a client key + domain whitelisting.

Last updated

Was this helpful?