import { Alert } from '@mui/material'; import useUiConfig from 'hooks/api/getters/useUiConfig/useUiConfig'; export const ApiTokenDocs = () => { const { uiConfig } = useUiConfig(); return (

Read the{' '} Getting started guide {' '} to learn how to connect to the Unleash API from your application or programmatically. Please note it can take up to 1 minute before a new API key is activated.


API URL: {' '}
{uiConfig.unleashUrl}/api/
); };