> ## 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 /ja/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

````