Some BlockRazor services require an auth token to be included with each request. This token identifies your account, enforces your subscription entitlements, and enables access to premium endpoints. The process of obtaining your token is straightforward: register on the BlockRazor website, activate your account through a confirmation email, then copy the token from your account dashboard.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/BlockRazorinc/docs_en/llms.txt
Use this file to discover all available pages before exploring further.
Registration and Token Setup
Visit the BlockRazor Website
Go to https://www.blockrazor.io and click Register in the upper-right corner of the page. The system will redirect you to the registration page.
Create Your Account
On the registration page, enter your email address and choose a password, then click Register. BlockRazor will immediately send an account activation email to the address you provided.
Activate Your Account
Open your inbox and find the activation email from BlockRazor. Click the account activation link inside the email. This confirms your address and activates your account.
Using Your Auth Token in API Requests
Once you have your auth token, include it in every API request to authenticated endpoints. BlockRazor follows the standard HTTP Bearer token convention.HTTP Header (Recommended)
Pass the token as a Bearer token in theAuthorization header:
Query Parameter (Alternative)
Some endpoints also accept the token as a URL query parameter namedauth:
Check the documentation page for each specific service to confirm the exact authentication method and parameter name it expects. The
Authorization header is the most broadly supported approach.