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

# 取得錢包建立的池

> 檢索此錢包建立（啟動）的所有 CPMM 池。




## OpenAPI

````yaml /zh-Hant/api-reference/openapi/owner-api-v1.yaml get /create-pool/{owner}
openapi: 3.0.3
info:
  title: Owner API
  description: |
    檢索跨 Raydium 流動性池的每個錢包餘額、持倉和可領取獎勵。
    專為錢包和投資組合儀表板設計，可在單次請求中取得錢包範圍內的資料。
  version: 1.0.0
  contact:
    name: Raydium
    url: https://raydium.io
servers:
  - url: https://owner-v1.raydium.io
    description: Mainnet
  - url: https://owner-v1-devnet.raydium.io
    description: Devnet
security: []
tags:
  - name: Position
    description: 檢索每個錢包的持倉餘額和狀態
  - name: Pool Creation
    description: 檢索錢包建立的池
  - name: IDO
    description: 檢索 IDO 參與資料
  - name: Admin
    description: 管理端點（內部使用）
paths:
  /create-pool/{owner}:
    get:
      tags:
        - Pool Creation
      summary: 取得錢包建立的池
      description: |
        檢索此錢包建立（啟動）的所有 CPMM 池。
      operationId: getOwnerCreatedPools
      parameters:
        - name: owner
          in: path
          required: true
          description: 錢包公鑰（base58）
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                description: 已建立池資料
        '404':
          description: 錢包未建立任何池
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    ErrorResponse:
      type: object
      description: 標準錯誤回應
      properties:
        id:
          type: string
          description: 請求 ID（UUID）
        success:
          type: boolean
          example: false
      required:
        - id
        - success

````