Skip to main content
Version: testnet (v0.73)

List liquidity providers data

List information about active liquidity provider(s) for a given market, or liquidity provider's party ID

Query Parameters
    marketId string

    Market ID to retrieve liquidity providers for.

    partyId string

    Party ID to retrieve data for.

    pagination.first int32

    Number of records to be returned that sort greater than row identified by cursor supplied in 'after'.

    pagination.after string

    If paging forwards, the cursor string for the last row of the previous page.

    pagination.last int32

    Number of records to be returned that sort less than row identified by cursor supplied in 'before'.

    pagination.before string

    If paging forwards, the cursor string for the first row of the previous page.

    pagination.newestFirst boolean

    Whether to order the results with the newest records first. If not set, the default value is true.

Responses

A successful response.


Schema
    liquidityProviders object

    Page of liquidity providers and corresponding page information.

    edges object[]

    Page of liquidity provider data.

  • Array [
  • cursor string

    Cursor that can be used to fetch further data.

    node object

    Liquidity provider information returned by the API.

    feeShare object

    Information used for calculating an LP's fee share, such as the equity like share, average entry valuation and liquidity score for the liquidity provider for the specified market.

    averageEntryValuation string

    Average entry valuation of the liquidity provider for the market.

    averageScore string

    Average liquidity score.

    equityLikeShare string

    Share own by this liquidity provider.

    party string

    Liquidity provider party ID.

    virtualStake string

    The virtual stake of this liquidity provider.

    marketId string

    ID of the market the liquidity provider is active in.

    partyId string

    Party ID of the liquidity provider.

  • ]
  • pageInfo object

    Page information that is used for fetching further pages.

    endCursor string

    End cursor.

    hasNextPage boolean

    Indicator if there is a next page.

    hasPreviousPage boolean

    Indicator if there is a previous page.

    startCursor string

    Start cursor.

Loading...