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

# Get the status of the account abstraction microservice

> Retrieves the status of the account abstraction microservice.



## OpenAPI

````yaml /openapi-specs/pro-api-v11.yaml get /v2/proxy/account-abstraction/status
openapi: 3.0.0
info:
  contact:
    email: info@blockscout.com
  title: Blockscout
  version: 11.0.3
servers:
  - url: http://localhost/api
    variables: {}
security: []
tags:
  - name: blocks
  - name: transactions
  - name: addresses
  - name: internal-transactions
  - name: tokens
  - name: token-transfers
  - name: smart-contracts
  - name: config
  - name: main-page
  - name: search
  - name: stats
  - name: csv-export
  - name: account-abstraction
  - name: withdrawals
  - name: advanced-filters
  - name: arbitrum
  - name: legacy
  - name: optimism
  - name: mud
  - name: celo
  - name: scroll
  - name: zilliqa
paths:
  /v2/proxy/account-abstraction/status:
    get:
      tags:
        - account-abstraction
      summary: Get the status of the account abstraction microservice
      description: Retrieves the status of the account abstraction microservice.
      operationId: BlockScoutWeb.API.V2.Proxy.AccountAbstractionController.status
      parameters:
        - description: API key for rate limiting or for sensitive endpoints
          in: query
          name: apikey
          required: false
          schema:
            type: string
            x-struct: null
            x-validate: null
        - description: Secret key for getting access to restricted resources
          in: query
          name: key
          required: false
          schema:
            type: string
            x-struct: null
            x-validate: null
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Status'
          description: Status
        '501':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotImplementedResponse'
          description: Not Implemented
      callbacks: {}
components:
  schemas:
    Status:
      additionalProperties:
        additionalProperties: false
        properties:
          enabled:
            nullable: false
            type: boolean
            x-struct: null
            x-validate: null
          live:
            nullable: false
            type: boolean
            x-struct: null
            x-validate: null
          past_db_logs_indexing_finished:
            nullable: false
            type: boolean
            x-struct: null
            x-validate: null
          past_rpc_logs_indexing_finished:
            nullable: false
            type: boolean
            x-struct: null
            x-validate: null
        type: object
        x-struct: null
        x-validate: null
      description: Status struct.
      nullable: false
      properties:
        finished_past_indexing:
          nullable: false
          type: boolean
          x-struct: null
          x-validate: null
      required:
        - finished_past_indexing
      title: Status
      type: object
      x-struct: Elixir.BlockScoutWeb.Schemas.API.V2.Proxy.AccountAbstraction.Status
      x-validate: null
    NotImplementedResponse:
      description: Response returned when the feature is not implemented
      properties:
        message:
          description: Error message indicating the feature is not implemented
          example: Feature not implemented
          type: string
          x-struct: null
          x-validate: null
      title: NotImplementedResponse
      type: object
      x-struct: >-
        Elixir.BlockScoutWeb.Schemas.API.V2.ErrorResponses.NotImplementedResponse
      x-validate: null

````