> ## Documentation Index
> Fetch the complete documentation index at: https://docs.neuro-tech.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Recover

> Start account recovery without revealing account existence

## Overview

Starts a recovery process when a user has lost access. The server may send a
recovery email, request peer approval, or notify the operator depending on the
account status.

This endpoint can be called without an existing session.

## Authentication

No authentication required.


## OpenAPI

````yaml /test-api/openapi.yaml post /Agent/Account/Recover
openapi: 3.1.0
info:
  title: Neuron Agent API
  version: 1.0.0
  description: |-
    The Agent API exposes core Neuron functionality over HTTP so services can
    operate without a persistent XMPP connection. Endpoints are grouped by
    capability, starting with Accounts and XMPP messaging.
servers:
  - url: https://{host}
    variables:
      host:
        default: neuron.example.com
        description: Neuron domain issued to you.
security:
  - bearerAuth: []
tags:
  - name: Accounts
  - name: Crypto
  - name: Open intelligence
  - name: Legal and contracts
  - name: State machines
  - name: Storage
  - name: Tokens
  - name: Wallet
  - name: XMPP messaging
paths:
  /Agent/Account/Recover:
    post:
      tags:
        - Accounts
      summary: Recover
      description: Start account recovery without revealing account existence
      operationId: post_Agent_Account_Recover
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                userName:
                  type: string
                personalNr:
                  type: string
                country:
                  type: string
                eMail:
                  type: string
                phoneNr:
                  type: string
              additionalProperties: true
              required:
                - userName
                - personalNr
                - country
                - eMail
                - phoneNr
            example:
              userName: alice
              personalNr: ''
              country: ''
              eMail: alice@example.com
              phoneNr: ''
      responses:
        '200':
          description: Success
      security: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````