v1

latestOpenAPI 3.0.02026-07-26268286602.5 KB
stability

List Stability validators.

Retrieves a paginated list of validators on the Stability chain, optionally filtered by state and sorted by state, address hash or number of blocks produced.

get/{chain_id}/api/v2/validators/stability

Path parameters

chain_idstring required

The ID of the blockchain

Query parameters

state_filterstring

Comma-separated list of validator states to keep. Allowed values: active, probation, inactive (case-sensitive).

sort'state' | 'address_hash' | 'blocks_validated'

Sort results by:

  • state - Sort by validator operational state
  • address_hash - Sort by address hash
  • blocks_validated - Sort by number of blocks validated by the validator Should be used together with order parameter.
order'asc' | 'desc'

Sort order:

  • asc - Ascending order
  • desc - Descending order Should be used together with sort parameter.
state'active' | 'probation' | 'inactive'

Cursor field — validator state from the previous page's next_page_params.

address_hashstring

Cursor field — validator address hash from the previous page's next_page_params.

blocks_validatedinteger

Cursor field — number of blocks validated from the previous page's next_page_params.

Response

List of Stability validators.

next_page_paramsobject nullable required

Example response

{
  "next_page_params": {
    "address_hash": "0x0000000000000000000000000000000000000805",
    "blocks_validated": 100,
    "state": "active"
  }
}