The Cross-Chain Interoperability Protocol (CCIP) Configuration API provides comprehensive information about supported blockchain networks and their configurations.
This documentation provides details about:
Use the interactive documentation below to explore and test the API endpoints.
curl -X GET "https://docs.chain.link/api/ccip/v1/chains?environment=mainnet" \
-H "accept: application/json"
curl -X GET "https://docs.chain.link/api/ccip/v1/chains?environment=mainnet&chainId=1,137" \
-H "accept: application/json"
const fetchCcipChains = async () => {
try {
const response = await fetch(
'https://docs.chain.link/api/ccip/v1/chains?environment=mainnet&chainId=1'
);
const data = await response.json();
console.log('Chain data:', data);
return data;
} catch (err) {
console.error('Error fetching CCIP chains:', err);
}
}