# Verify Wallet (beta) **POST /v1/auth/wallets/verify** Verifies a wallet signature. This endpoint will verify the signature signed by the wallet private key using the challenge presented by the `BeginWalletRegistration` endpoint for the wallet address specified. If signature is valid, we will return the wallet object with its associated user ID. If the wallet is not previously attached the the user initiating the wallet registration, the wallet will be attached to the user. ## HTTP Request `POST /v1/auth/wallets/verify` ## Returns A successful response returns a `Wallet` object. ## Servers - Production: https://api.moonkey.fun (Production) ## Authentication methods - Authorization ## Parameters ## Body parameters Content-type: application/json - **wallet_type** (string) Determines the type of wallet to register. Possible values: ethereum, solana (more coming soon!). - **signature** (string) Signed message using the associated private key of the wallet address. We expect ethereum signed message to be base64 encoded (e.g. 0x...) and solana signed message will be bs58 encoded. - **public_address** (string) Public wallet address of the wallet. - **session_expires_in** (number) `Optional` Extend the session expiration time to N minutes from now, must be between 5 to 525600 minutes (365 days). This parameter will create a new session if there is no existing session along with a `session_token` and `session_jwt`. However, if a valid `session_token` or `session_jwt` is sent in, it will extend that session by the minutes specified. If not sent in, no session will be created by default. - **session_token** (string) `Optional` Unique session token to verify. - **session_jwt** (string) `Optional` Unique Session JWT to verify. ## Responses ### 200: #### Body Parameters: application/json (object) - **id** (string) - **app_id** (string) - **user_id** (string) - **public_address** (string) - **wallet_type** (string) - **is_default** (boolean) - **is_ready_only** (boolean) - **is_imported** (boolean) - **updated_at** (number) - **created_at** (number) - **session_token** (string) - **session_jwt** (string) - **session** (object) ### : [Powered by Bump.sh](https://bump.sh)