Account locked pasttime not unlocking only

Returns locked records of an account with unlock time beyond timestamp excluding tokens started unlocking

GET//osmo.nownodes.io/osmosis/lockup/v1beta1/account_locked_pasttime_not_unlocking_only/{owner}
Path parameters
owner*string
Query parameters
Response

A successful response.

Body
locksarray of object
Request
const response = await fetch('//osmo.nownodes.io/osmosis/lockup/v1beta1/account_locked_pasttime_not_unlocking_only/{owner}', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "locks": [
    {
      "ID": "text",
      "owner": "text",
      "duration": "text",
      "end_time": "2024-12-22T01:45:47.974Z",
      "coins": [
        {
          "denom": "text",
          "amount": "text"
        }
      ],
      "reward_receiver_address": "text"
    }
  ]
}