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

# Pools nach LP-Mint abrufen

> Pool-Informationen anhand von LP-Token-Adressen abrufen. 60 Sekunden gecacht.



## OpenAPI

````yaml /de/api-reference/openapi/api-v3.yaml get /pools/info/lps
openapi: 3.0.3
info:
  title: Raydium API v3
  version: 3.0.0
  description: >-
    Die Raydium API v3 stellt REST-Endpunkte bereit zum Abfragen von
    Liquiditätspools, Mint-Informationen, Farm-Details, IDO-Pools und
    Chain-Metadaten für die Solana-Blockchain. Wird von Wallets, Aggregatoren
    und Tradern genutzt, um Preisfeeds, Pooldaten und Routing-Informationen
    abzurufen.
servers:
  - url: https://api-v3.raydium.io
    description: Produktion (Mainnet)
  - url: https://api-v3-devnet.raydium.io
    description: Entwicklung (Devnet)
security: []
tags:
  - name: Main
    description: Kern-API-Endpunkte für Chain-Informationen, TVL und Konfiguration
  - name: Mint
    description: Token-Mint-Informationen und Preise
  - name: Pools
    description: Liquiditätspool-Informationen, Schlüssel und historische Daten
  - name: Farms
    description: Farm-Pool-Informationen und Schlüssel
  - name: IDO
    description: IDO-Pool-Informationen und Schlüssel
paths:
  /pools/info/lps:
    get:
      tags:
        - Pools
      summary: Pools nach LP-Mint abrufen
      description: >-
        Pool-Informationen anhand von LP-Token-Adressen abrufen. 60 Sekunden
        gecacht.
      operationId: getPoolsInfoLps
      parameters:
        - name: lps
          in: query
          required: true
          schema:
            type: string
          description: Kommagetrennte LP-Mint-Adressen
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/ApiResponse'
                  - type: object
                    properties:
                      data:
                        type: array
                        items:
                          $ref: '#/components/schemas/PoolInfoItem'
components:
  schemas:
    ApiResponse:
      type: object
      description: >-
        Allgemeiner Antwort-Envelope. Das Feld `data` wird von jedem Endpunkt
        über `allOf` bereitgestellt und ist daher nicht im Basis-Envelope
        deklariert.
      required:
        - id
        - success
      properties:
        id:
          type: string
          description: Anfrage-ID (UUID)
        success:
          type: boolean
          description: Gibt an, ob die Anfrage erfolgreich war
        msg:
          type: string
          description: Fehlermeldung, falls `success` den Wert `false` hat
    PoolInfoItem:
      type: object
      properties:
        id:
          type: string
        type:
          type: string
        programId:
          type: string
        lpMint:
          type: string
        mint1:
          type: object
        mint2:
          type: object
        tvl:
          type: number
        lpPrice:
          type: number
        farmOngoingCount:
          type: number
        day:
          type: object
        week:
          type: object
        month:
          type: object

````