Skip to main content
Pre-release — contact your Fortary account team for access.
Illustrative reference. These examples show the shape of the API and are provided for early evaluation while it is still being finalized. Field names and response details may change before the API is released. A complete reference, generated directly from the live API, will replace these examples once it is available.
GET /v1/networks Lists the blockchain networks available to your organization. Requires the vault:read scope.

Request

curl https://customer-api.fortary.io/v1/networks \
  -H "Authorization: Bearer fkc_..."

Response

{
  "data": [
    { "name": "Ethereum", "kind": "mainnet" },
    { "name": "Bitcoin", "kind": "mainnet" },
    { "name": "BaseSepolia", "kind": "testnet" }
  ],
  "pagination": {
    "limit": 100,
    "nextCursor": null
  }
}
Each item in data is a network:
  • name — the friendly network name, from the validated network set — see Identifiers & data formats.
  • kind — whether the network is a mainnet or a testnet.
To page through a longer list, pass nextCursor back — see Pagination. Errors follow the standard error envelope.