List blockchains with pagination and filtering
Returns the tenant’s blockchains, paginated and filterable by state, network environment, and free-text search, with configurable sorting.
Query Parameters
tenant_id is extracted from JWT token context. Opaque cursor for the requested page. Currently encodes the 1-based page number as a decimal string ("1", "2", ...); treat as opaque on the client. Absent = first page.
Maximum number of items per page. Default 20, clamped to [1, 1000].
1 <= x <= 1000Free-text search across chain and symbol name.
Include filter (repeated query params).
Blockchain lifecycle state used for list filtering.
BLOCKCHAIN_STATE_CREATED, BLOCKCHAIN_STATE_ACTIVATING, BLOCKCHAIN_STATE_ACTIVATED, BLOCKCHAIN_STATE_DEACTIVATING, BLOCKCHAIN_STATE_DEACTIVATED, BLOCKCHAIN_STATE_TECHNICAL_FAILURE Filter by network. Blockchain network environment.
MAINNET, TESTNET Sort field. Default: createdAt. Field to sort the blockchain list by.
createdAt, chainName, symbolName, status Sort order. Default: DESC.
ASC, DESC Exclude filter (repeated query params).
Blockchain lifecycle state used for list filtering.
BLOCKCHAIN_STATE_CREATED, BLOCKCHAIN_STATE_ACTIVATING, BLOCKCHAIN_STATE_ACTIVATED, BLOCKCHAIN_STATE_DEACTIVATING, BLOCKCHAIN_STATE_DEACTIVATED, BLOCKCHAIN_STATE_TECHNICAL_FAILURE Response
OK
Blockchains for the current page.
Total number of items across all pages, matching the current filter.
100
Cursor for the next page; absent when the current page is the last. Opaque base64 blob bundling the target pageCursor and current query params (pageSize, search, status, statusExclude, blockchainEnv, sortBy, order).
"some_value"
Cursor for the previous page; absent when the current page is the first.
"some_value"