Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
JavaScript
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}}; fetch('https://api.keystoneos.xyz/v1/chains', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
import requestsurl = "https://api.keystoneos.xyz/v1/chains"headers = {"Authorization": "Bearer <token>"}response = requests.get(url, headers=headers)print(response.text)
curl --request GET \ --url https://api.keystoneos.xyz/v1/chains \ --header 'Authorization: Bearer <token>'
[ { "chain_id": 123, "name": "<string>", "escrow_address": "<string>", "is_coordinator_chain": true } ]
Returns the list of blockchain networks supported for settlement.
Auth0 JWT access token. See Authentication for details.
Successful Response