GET
/
pools
/
vesting
/
{address}
get_pool_vesting_liquidity
curl --request GET \
  --url https://dammv2-api.meteora.ag/pools/vesting/{address}
{
  "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>"
  },
  "error": {
    "message": "<string>",
    "type": "<string>"
  },
  "status": 123
}

Path Parameters

address
string
required

Query Parameters

vesting_end_timestamp
integer | null

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

Required range: x >= 0
case_sensitive
boolean

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

Response

200
application/json

The response is of type object.