Auth
Store Private Key
Store an encrypted blockchain private key for the authenticated user. Replaces any existing key.
Authorization
Authorization
RequiredBearer <token>Enter the JWT token you received from the login endpoint (without 'Bearer' prefix)
In: header
Request Body
application/json
Required[key: string]
anyResponse Body
Successful Response
TypeScript Definitions
Use the response body type in TypeScript.
[key: string]
anyHow is this guide?
Register User POST
Register a new user.
Login POST
Log in a user and return JWT tokens. Simply provide your email and password directly in the request body: ```json { "email": "user@example.com", "password": "yourpassword" } ``` The response will contain an access_token that should be used in the Authorization header for protected endpoints, with the format: `Bearer {access_token}`