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

# List businesses for a user

> Returns all businesses where this user is listed as a beneficial owner.



## OpenAPI

````yaml /api-reference/v1/openapi.json get /v1/user/{user_id}/business
openapi: 3.0.0
info:
  title: Palm Partner API
  description: >-
    The Palm API is identity verification and compliance infrastructure for US
    businesses: onboard businesses, verify businesses and people (KYB/KYC)
    against authoritative sources, monitor them for changes in real time, and
    act on their behalf through filings, formation, and registered agent
    services.
  version: '1.0'
  contact:
    name: Palm Support
    url: https://getpalm.com
    email: support@getpalm.com
  termsOfService: https://getpalm.com/terms
  license:
    name: Proprietary
    url: https://getpalm.com/license
servers:
  - url: https://api.getpalm.com
    description: Production
security: []
tags:
  - name: Registry
    description: Search business registries
  - name: Verification
    description: Identity and business verification
  - name: Monitor
    description: Continuous monitoring of businesses
  - name: Business
    description: Business entity management
  - name: User
    description: User identity management
paths:
  /v1/user/{user_id}/business:
    get:
      tags:
        - User
      summary: List businesses for a user
      description: Returns all businesses where this user is listed as a beneficial owner.
      operationId: getUserBusinesses
      parameters:
        - name: user_id
          required: true
          in: path
          description: User ID
          schema:
            example: palm_usr_1a2b3c4d5e6f7g8h
            type: string
      responses:
        '200':
          description: List of businesses retrieved successfully
          content:
            application/json:
              schema:
                type: object
                required:
                  - object
                  - data
                properties:
                  object:
                    type: string
                    enum:
                      - list
                    example: list
                    description: Object type identifier, always "list"
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/BusinessReference'
                    description: Array of resources
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
        '429':
          description: Rate Limited
        '500':
          description: Server Error
      security:
        - ApiKey: []
components:
  schemas:
    BusinessReference:
      type: object
      properties:
        business_id:
          type: string
          description: Unique identifier for the business
          format: uuid
          example: 987e6543-e21a-45b6-c789-012345678901
        business_name:
          type: string
          description: Name of the business
          example: Acme Corporation
        ownership_percentage:
          type: number
          description: Percentage of ownership in the business
          minimum: 0
          maximum: 100
          example: 35.5
        title:
          type: object
          description: User's title or role in the business
          nullable: true
          example: CEO
      required:
        - business_id
        - business_name
        - ownership_percentage
        - title
  securitySchemes:
    ApiKey:
      scheme: bearer
      bearerFormat: opaque
      type: http
      description: 'Enter your API key in the format: sk_test_xxxxx or sk_live_xxxxx'

````