Stork price states

Retrieves the state for all stork price feeds

GEThttps://inj.nownodes.io/injective/oracle/v1beta1/stork_price_states
Response

A successful response.

Body
price_statesarray of object
Request
const response = await fetch('https://inj.nownodes.io/injective/oracle/v1beta1/stork_price_states', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "price_states": [
    {
      "timestamp": "text",
      "symbol": "text",
      "value": "text",
      "price_state": {
        "price": "text",
        "cumulative_price": "text",
        "timestamp": "text"
      }
    }
  ]
}