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

# List Stakes

> List the individual stakes in a staking pool, optionally filtered to a single wallet address.



## OpenAPI

````yaml /apis/admin/openapi.json post /api/external/v1/staking/stakes
openapi: 3.1.0
info:
  title: Magna Admin API
  version: 1.0.0
  description: >-
    The private, server-to-server API for managing allocations, funding and
    claims, transactions, portals, and token data. Authenticated with a project
    API key sent in the `x-magna-api-token` header.
servers:
  - url: https://app.magna.so
    description: Production
security:
  - apiToken: []
paths:
  /api/external/v1/staking/stakes:
    post:
      tags:
        - Staking
      summary: List Stakes
      description: >-
        List the individual stakes in a staking pool, optionally filtered to a
        single wallet address.
      operationId: postStakingStakes
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type:
                - object
              properties:
                stakingPoolId:
                  type:
                    - string
                  minLength: 1
                  format: uuid
                walletAddress:
                  type:
                    - string
                  minLength: 1
              required:
                - stakingPoolId
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  isProcessed:
                    type: boolean
                  result:
                    description: Endpoint-specific result payload.
              example:
                isProcessed: true
                result:
                  items:
                    - id: f3b9d1a4-7c2e-4d6b-8a91-0e5c4b2a1d33
                      amount: '500'
                      status: STAKED
                      createdAt: '2025-03-12T09:41:00.000Z'
                      walletAddress: '0x01f9632EA55Aa14eD6B39aA8EbCEcE425f7ef0e9'
                  total: 1
        '400':
          description: Validation error
        '401':
          description: Missing or invalid API token
        '403':
          description: API token lacks the required scope or project access
components:
  securitySchemes:
    apiToken:
      type: apiKey
      in: header
      name: x-magna-api-token

````