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

# Ambil posisi stake untuk wallet

> Ambil semua posisi stake (AMM standar atau CPMM) yang dimiliki wallet ini.
Mengembalikan data posisi yang di-cache termasuk jumlah dan reward.




## OpenAPI

````yaml /id/api-reference/openapi/owner-api-v1.yaml get /position/stake/{owner}
openapi: 3.0.3
info:
  title: API Pemilik
  description: >
    Ambil saldo per-wallet, posisi, dan reward yang dapat diklaim di seluruh
    liquidity pool Raydium.

    Dirancang untuk wallet dan dashboard portofolio guna mengambil data yang
    terbatas pada pemilik dalam satu permintaan.
  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: Ambil saldo posisi dan status per wallet
  - name: Pool Creation
    description: Ambil pool yang dibuat oleh wallet
  - name: IDO
    description: Ambil data partisipasi IDO
  - name: Admin
    description: Endpoint administratif (penggunaan internal)
paths:
  /position/stake/{owner}:
    get:
      tags:
        - Position
      summary: Ambil posisi stake untuk wallet
      description: >
        Ambil semua posisi stake (AMM standar atau CPMM) yang dimiliki wallet
        ini.

        Mengembalikan data posisi yang di-cache termasuk jumlah dan reward.
      operationId: getOwnerStakePositions
      parameters:
        - name: owner
          in: path
          required: true
          description: Kunci publik wallet (base58)
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                description: Struktur data posisi (lihat respons OwnerAPI)
        '404':
          description: Wallet tidak memiliki posisi stake
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    ErrorResponse:
      type: object
      description: Respons kesalahan standar
      properties:
        id:
          type: string
          description: ID Permintaan (UUID)
        success:
          type: boolean
          example: false
      required:
        - id
        - success

````