> For the complete documentation index, see [llms.txt](https://ecfmg.gitbook.io/azure-serverless-quickstart/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ecfmg.gitbook.io/azure-serverless-quickstart/application-design/feature-flags/website-integration.md).

# Website Integration

Use the following code in the website to access feature flags:

```typescript
import axios from "axios";

const api = axios.create({
    adapter: cache.adapter,
});

const options = {
    url: //Blob URL goes here
};

await api(options).then((response) => {
    return response.data;
}).catch((error) => {
    //Handle error
});
```
