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

# Get DeFi protocol integrations

> Retrieves information about all DeFi protocol integrations and their points distribution across different chains.




## OpenAPI

````yaml GET /v1/defi/protocols
openapi: 3.0.0
info:
  title: Mellow Protocol API
  description: >
    API for Mellow Protocol's permissionless vaults and Liquid Restaking Token
    (LRT) system. 

    Mellow offers a series of vault smart contracts tailored to different risk
    profiles, managed by LRT curators.

    The system allows permissionless creation of modular LRTs and active
    liquidity management.
  version: 1.0.0
servers:
  - url: https://points.mellow.finance
    description: Production server
security: []
paths:
  /v1/defi/protocols:
    get:
      summary: Get DeFi protocol integrations
      description: >
        Retrieves information about all DeFi protocol integrations and their
        points distribution across different chains.
      operationId: getDefiProtocols
      responses:
        '200':
          description: Successful response containing DeFi protocol integrations
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  required:
                    - chain_id
                    - vault_address
                    - defi_protocol_address
                    - user_mellow_points
                    - user_symbiotic_points
                    - user_referal_points
                    - user_vault_balance
                  properties:
                    chain_id:
                      type: integer
                      description: >-
                        The blockchain network ID where the protocol is
                        integrated
                    vault_address:
                      type: string
                      description: The address of the vault contract
                    defi_protocol_address:
                      type: string
                      description: The address of the DeFi protocol contract
                    user_mellow_points:
                      type: string
                      description: Points allocated in the Mellow protocol
                    user_symbiotic_points:
                      type: string
                      description: Points allocated in the Symbiotic protocol
                    user_referal_points:
                      type: string
                      description: Points earned through referrals
                    user_vault_balance:
                      type: string
                      description: Balance in the vault in smallest units
                    name:
                      type: string
                      description: Name of the protocol integration
                      nullable: true
                    protocol:
                      type: string
                      description: Protocol identifier
                      nullable: true
                    pool_id:
                      type: string
                      description: Unique identifier for the liquidity pool
                      nullable: true
                    url:
                      type: string
                      description: URL to the protocol's interface
                      nullable: true
                    boost:
                      type: string
                      description: Boost multiplier for points earning
                      nullable: true
                example:
                  - chain_id: 48900
                    vault_address: '0x5fD13359Ba15A84B76f7F87568309040176167cd'
                    defi_protocol_address: >-
                      0x7d8311839eB44Dd5194abd2dd3998722455A24E0_0x9eFdE41A87fa4dD47BAa584954e8Abd5b8bdBfE7
                    user_mellow_points: '6223.551000000001'
                    user_symbiotic_points: '6223.549319787699'
                    user_referal_points: '0.0'
                    user_vault_balance: '5035533496859123083549'
                    name: inwstETHs amphrETH
                    protocol: Zircuit
                    pool_id: pool-zircuit-l2-staking-inwsteths-amphreth
                    url: https://app.zircuit.com/liquidity-hub
                    boost: '2'

````