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

# My Private account pools

> Get details about the private account pools associated with the API user



## OpenAPI

````yaml GET /users/my-private-account-pools
openapi: 3.0.1
info:
  title: OpenAPI Plant Store
  description: >-
    A sample API that uses a plant store as an example to demonstrate features
    in the OpenAPI specification
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.harvestapi.io
security:
  - ApiKeyAuthHeader: []
paths:
  /users/my-private-account-pools:
    get:
      summary: Get my API private account pools
      description: Get details about the private account pools associated with the API user
      parameters: []
      responses:
        '200':
          description: My API private account pools
components:
  securitySchemes:
    ApiKeyAuthHeader:
      type: apiKey
      in: header
      name: X-API-Key

````