Skip to main content

Create your account

Welcome to the Meria Staking API onboarding process! Creating an account is simple and secure. Once we have agreed on the commercial terms, you will receive a unique invitationCode from our team. With this code, you can autonomously create your account and generate your own API keys to start integrating with our platform.

Step-by-step: Account Registration

  1. Receive your invitation code

    • After discussing and agreeing on the commercial approach, our team will provide you with a unique invitationCode.
  2. Activate your account

    • Make a POST request to the /v1/account/activate endpoint with your chosen account name and the invitation code.
    • Example:
POST /v1/account/activate
Content-Type: application/json

{
"name": "your-account-name",
"invitationCode": "your-invitation-code"
}
  1. Store your master API key

    • The response will include your master API key. Store it securely: it will not be shown again!
  2. (Optional) Create secondary API keys

    • You can generate additional API keys for different environments or team members by calling:
POST /v1/account/create/api-key
Content-Type: application/json

{
"name": "production"
}
  1. Start using the API
    • Use your API key(s) to authenticate all requests to the Meria Staking API.

For the full interactive API documentation and all available endpoints, see: