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

# getSmartAccount

> Learn how to use the getSmartAccount JSON-RPC method.

## Understanding `getSmartAccount`

* `getSmartAccount` returns information regarding a specific smart account (such as a `BICONOMY`, `CYBERCONNECT`, `SIMPLE`, `LIGHT`, `XTERIO` account) tied to an account address. It takes:
  * Account config object:
    * `name` - string. Either `BICONOMY`, `CYBERCONNECT` or `SIMPLE`.
    * `version` - string. Either `1.0.0`, '1.0.2' or `2.0.0` (see the [Web SDK](/aa/sdks/desktop/web) reference for supported configurations).
    * `ownerAddress` - string.

***

## Query example

```json JSON theme={null}
{
  "jsonrpc": "2.0",
  "id": "ee9cce2a-2f34-4c66-879e-c84c6f0e7f2d",
  "chainId": 80001,
  "method": "particle_aa_getSmartAccount",
  "params": [
    // account config array
    {
      "name": "BICONOMY",
      "version": "1.0.0",
      "ownerAddress": "0xA60123a1056e9D38B64c4993615F27cCe9A9E8D5"
    },
    {
      "name": "BICONOMY",
      "version": "1.0.0",
      "ownerAddress": "0x329a7f8b91Ce7479035cb1B5D62AB41845830Ce8"
    }
  ]
}
```


## OpenAPI

````yaml openapi-aa POST /#particle_aa_getSmartAccount
openapi: 3.0.0
info:
  title: Particle Network Account Abstraction RPC
  version: 1.0.0
servers:
  - url: https://rpc.particle.network/evm-chain
security:
  - BasicAuth: []
paths:
  /#particle_aa_getSmartAccount:
    post:
      summary: getSmartAccount
      operationId: getSmartAccount
      requestBody:
        description: Request to retrieve smart account information.
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GetSmartAccountRequest'
      responses:
        '200':
          description: Successful response with smart account information.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetSmartAccountResponse'
components:
  schemas:
    GetSmartAccountRequest:
      allOf:
        - $ref: '#/components/schemas/RPCRequest'
        - type: object
          properties:
            method:
              enum:
                - particle_aa_getSmartAccount
            params:
              type: array
              description: Parameters for retrieving a smart account.
              items:
                type: array
                items:
                  type: string
                  description: Account details as a string.
    GetSmartAccountResponse:
      allOf:
        - $ref: '#/components/schemas/RPCResponse'
        - type: object
          properties:
            result:
              type: array
              description: Array of smart account details.
              items:
                type: object
    RPCRequest:
      type: object
      required:
        - jsonrpc
        - id
        - method
        - params
      properties:
        jsonrpc:
          type: string
          default: '2.0'
          description: Version of the JSON-RPC protocol, should be 2.0.
          example: '2.0'
        id:
          type: integer
          default: 1
          description: The request identifier.
          example: 1
        method:
          type: string
          description: API method being called.
        params:
          type: array
          description: Parameters for the API method call.
    RPCResponse:
      type: object
      required:
        - jsonrpc
        - id
        - result
      properties:
        jsonrpc:
          type: string
          default: '2.0'
          description: Version of the JSON-RPC protocol, should be 2.0.
          example: '2.0'
        id:
          type: integer
          default: 1
          description: The request identifier.
          example: 1
        result:
          anyOf:
            - $ref: '#/components/schemas/AnyValue'
        chainId:
          type: integer
          description: The blockchain chain ID.
          example: 80001
    AnyValue:
      anyOf:
        - type: string
        - type: number
        - type: integer
        - type: boolean
        - type: object
        - type: array
          items: {}
  securitySchemes:
    BasicAuth:
      type: http
      scheme: basic

````