Platform State

Get platform state

Returns current grfq platform state.

GET/v1/ob/platform_state/
Authorization
Response
Body
platform_state*string
published_at*number (double)
next_platform_state*string
next_platform_state_at*number (double)
Request
const response = await fetch('/v1/ob/platform_state/', {
    method: 'GET',
    headers: {
      "Authorization": "Bearer Bearer"
    },
});
const data = await response.json();
Response
{
  "platform_state": "text",
  "published_at": 0,
  "next_platform_state": "text",
  "next_platform_state_at": 0
}

Last updated