Polyrankdocs
ApiMeta

GET /v1/meta/flags

Public feature-flag state (booleans only, no secrets). One call lets an agent/API client discover which flag-gated surfaces are live instead of probe-and-degrade.

GET
/v1/meta/flags

Public feature-flag state (booleans only, no secrets). One call lets an agent/API client discover which flag-gated surfaces are live instead of probe-and-degrade.

AuthorizationBearer <token>

API key: Authorization: Bearer pk_live_… (mint at polyrank.app/api-keys)

In: header

Response Body

application/json

curl -X GET "https://example.com/v1/meta/flags"
{  "flags": {    "PUBLIC_API_ENABLED": true,    "MARKET_BOOK_DEPTH_ENABLED": true,    "MARKET_SKILL_FLOW_ENABLED": true,    "UMA_DISPUTE_RISK_ENABLED": true,    "USER_RANKING_ENABLED": true,    "POSITION_ROLLUP_ENABLED": true,    "AGENT_WEBHOOKS_ENABLED": true,    "AGENT_CREDITS_ENABLED": true  },  "as_of": "string"}