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

# Get Smart Wallet

> Get a smart wallet on the In•Process protocol. Provide either `accountId` (artist UUID) or `walletAddress` (EOA address) — at least one is required. When both are supplied, `accountId` takes precedence.



## OpenAPI

````yaml GET /smartwallet
openapi: 3.1.0
info:
  title: In•Process API
  description: >-
    The In•Process API enables browsing and managing moments from timelines.
    Retrieve moments from a specific artist's timeline, browse the in•process
    collective timeline, or filter by collection. The API supports creating
    moments, managing collections, handling payments, and interacting with the
    In•Process protocol ecosystem.
  version: 1.0.0
servers:
  - url: https://api.inprocess.world/api
    description: Production server
security: []
paths:
  /smartwallet:
    get:
      summary: Get Smart Wallet
      description: >-
        Get a smart wallet on the In•Process protocol. Provide either
        `accountId` (artist UUID) or `walletAddress` (EOA address) — at least
        one is required. When both are supplied, `accountId` takes precedence.
      operationId: getSmartWallet
      parameters:
        - name: accountId
          in: query
          description: >-
            The UUID of the artist. When provided, resolves the artist's smart
            wallet via `getArtistSmartAccount`.
          required: false
          schema:
            type: string
            format: uuid
        - name: walletAddress
          in: query
          description: >-
            An EOA wallet address. When provided (and `accountId` is absent),
            resolves the smart wallet via `getWalletSmartAccount`.
          required: false
          schema:
            type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetSmartWalletResponse'
              example:
                address: '0x06a1bb8d0dccf8c7d7bad3a28352ba0a5d3a3df3'
        '400':
          description: Bad request — neither `accountId` nor `walletAddress` was provided
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security: []
components:
  schemas:
    GetSmartWalletResponse:
      type: object
      required:
        - address
      properties:
        address:
          type: string
          description: Smart wallet address connected to the artist wallet
    Error:
      type: object
      required:
        - status
        - message
      properties:
        status:
          type: string
          enum:
            - error
          description: Error status
        message:
          type: string
          description: Error message
        errors:
          type: array
          description: >-
            Optional array of field-level validation errors. Typically included
            in 400 Bad Request responses for validation errors.
          items:
            type: object
            required:
              - field
              - message
            properties:
              field:
                type: string
                description: The field name that failed validation
              message:
                type: string
                description: The validation error message for this field

````