GET
/
pools
/
vesting
get_pool_vesting_list
curl --request GET \
  --url https://dammv2-api.meteora.ag/pools/vesting
{
  "current_page": 123,
  "data": [
    {
      "pool_address": "<string>",
      "position_vesting": [
        {
          "activation_type": 123,
          "cliff_point": 1,
          "cliff_unlock_liquidity": 1,
          "cliff_unlock_liquidity_string": "<string>",
          "liquidity_per_period": 1,
          "liquidity_per_period_string": "<string>",
          "number_of_period": 1,
          "period_frequency": 1,
          "position_address": "<string>",
          "total_locked_liquidity": 1,
          "total_locked_liquidity_string": "<string>",
          "total_released_liquidity": 1,
          "total_released_liquidity_string": "<string>",
          "updated_at": 123,
          "vesting_address": "<string>",
          "vesting_end_timestamp": 1,
          "vesting_period_secs": 1
        }
      ],
      "total_locked_liquidity": 1,
      "total_locked_liquidity_string": "<string>",
      "total_released_liquidity": 1,
      "total_released_liquidity_string": "<string>"
    }
  ],
  "pages": 123,
  "status": 123,
  "total": 123
}

Query Parameters

order_by
string | null

Order by field. Default is cliff_point.

order
enum<string>

Order direction. Default is ascending.

Available options:
asc,
desc
limit
integer | null

Limit of the number of pools to return.

Required range: x >= 0
offset
integer | null

Number of records to skip

Required range: x >= 0
case_sensitive
boolean

Case sensitive search. If true, this will search for the exact address. Default is true.

vesting_end_timestamp
integer | null

Vesting end timestamp. If not provided, will use 6 months from time of request.

Required range: x >= 0

Response

200
application/json

The response is of type object.