> ## 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 Staking Pools

> List the staking pools configured for a token, with their status, totals, and stake/reward parameters.



## OpenAPI

````yaml /apis/admin/openapi.json post /api/external/v1/staking/pools
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/pools:
    post:
      tags:
        - Staking
      summary: List Staking Pools
      description: >-
        List the staking pools configured for a token, with their status,
        totals, and stake/reward parameters.
      operationId: postStakingPools
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type:
                - object
              properties:
                tokenId:
                  type:
                    - string
                  minLength: 1
                  format: uuid
                cursor:
                  type:
                    - string
                  minLength: 1
              required:
                - tokenId
      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: a1f0c3b2-1d4e-4c8a-9b7d-2e6f5a0c9d11
                      name: MAG Staking Pool
                      tokenId: 054d0c03-d20e-477e-81c0-9c2e4453d4a6
                      contractId: 5b0ff445-b293-40d3-81fa-3a753e4259c4
                      status: ACTIVE
                      totalStaked: '1250000'
                      totalRewardsDeposited: '75000'
                      periodFinish: '2025-12-31T00:00:00.000Z'
                      minimumStakeAmount: '100'
                      minimumStakeLength: 2592000
                      stakeWithdrawalDelay: 604800
                      rewardWithdrawalDelay: 0
                      maxApy: '12.5'
                      claimNativeTokenFee: '0'
                      unstakeNativeTokenFee: '0'
                  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

````