> ## 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 Artist Wallets

> Get all wallets associated with an artist on the In•Process protocol. Returns each wallet's address and type.

The `artistId` query parameter must be a valid UUID. No authentication is required.


## OpenAPI

````yaml GET /artists/wallets
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:
  /artists/wallets:
    get:
      summary: Get Artist Wallets
      description: >-
        Get all wallets associated with an artist on the In•Process protocol.
        Returns each wallet's address and type.
      operationId: getArtistWallets
      parameters:
        - name: artistId
          in: query
          description: The UUID of the artist whose wallets to retrieve.
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetArtistWalletsResponse'
              example:
                wallets:
                  - address: '0x51027631B9DEF86e088C33368eC4E3A4BE0aD264'
                    type: external
                  - address: '0xAbCdEf1234567890AbCdEf1234567890AbCdEf12'
                    type: farcaster
        '400':
          description: Bad request — invalid or missing `artistId` query parameter
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    GetArtistWalletsResponse:
      type: object
      required:
        - wallets
      properties:
        wallets:
          type: array
          description: All wallets associated with the artist.
          items:
            type: object
            required:
              - address
              - type
            properties:
              address:
                type: string
                description: The wallet's `0x`-prefixed EVM address.
                pattern: ^0x[a-fA-F0-9]{40}$
              type:
                type: string
                description: The wallet type.
                enum:
                  - privy
                  - farcaster
                  - external
                  - smart
    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

````