> ## 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 thông tin tham gia IDO của một ví

> Lấy dữ liệu tham gia IDO bao gồm số lượng đã đầu tư và trạng thái yêu cầu.




## OpenAPI

````yaml /vi/api-reference/openapi/owner-api-v1.yaml get /main/ido/{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:
  /main/ido/{owner}:
    get:
      tags:
        - IDO
      summary: Lấy thông tin tham gia IDO của một ví
      description: >
        Lấy dữ liệu tham gia IDO bao gồm số lượng đã đầu tư và trạng thái yêu
        cầu.
      operationId: getOwnerIdoInfo
      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 tham gia IDO
        '404':
          description: Ví không có tham gia IDO
          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

````