Get Private Key Status
Check if a user has a private key registered. Does not return the actual key, only status information.
Authorization
Authorization
RequiredBearer <token>Enter the JWT token you received from the login endpoint (without 'Bearer' prefix)
In: header
Response Body
Schema for private key status response
TypeScript Definitions
Use the response body type in TypeScript.
has_key
RequiredHas Keycreated_at
string | null | nullupdated_at
string | null | nullHow is this guide?
Get Api Keys GET
Get all API keys for the current user. Requires JWT Bearer authentication with the token received from the login endpoint.
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}`