> ## 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.

# Lấy các pool do ví tạo

> Lấy tất cả pool CPMM được tạo (khởi chạy) bởi ví này.




## OpenAPI

````yaml /vi/api-reference/openapi/owner-api-v1.yaml get /create-pool/{owner}
openapi: 3.0.3
info:
  title: API Chủ Sở Hữu
  description: >
    Lấy số dư trên mỗi ví, vị trí, và phần thưởng có thể nhận được trên các
    liquidity pool của Raydium.

    Tiện ích cho các ví và bảng điều khiển danh mục đầu tư để lấy dữ liệu theo
    phạm vi chủ sở hữu trong một yêu cầu duy nhất.
  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: Lấy số dư vị trí và trạng thái cho mỗi ví
  - name: Pool Creation
    description: Lấy các pool do ví tạo
  - name: IDO
    description: Lấy dữ liệu tham gia IDO
  - name: Admin
    description: Các endpoint hành chính (sử dụng nội bộ)
paths:
  /create-pool/{owner}:
    get:
      tags:
        - Pool Creation
      summary: Lấy các pool do ví tạo
      description: |
        Lấy tất cả pool CPMM được tạo (khởi chạy) bởi ví này.
      operationId: getOwnerCreatedPools
      parameters:
        - name: owner
          in: path
          required: true
          description: Khóa công khai ví (base58)
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                description: Dữ liệu các pool được tạo
        '404':
          description: Ví chưa tạo pool nào
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    ErrorResponse:
      type: object
      description: Phản hồi lỗi tiêu chuẩn
      properties:
        id:
          type: string
          description: ID yêu cầu (UUID)
        success:
          type: boolean
          example: false
      required:
        - id
        - success

````