> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt ## Resource: Sample Flows ## Article: Sample Flows ## Article Link: https://dev.wix.com/docs/api-reference/business-management/marketing/seo/seo-keywords-suggestions-service-plugin/sample-flows.md ## Article Content: # Sample Flows This article shares some use cases your app could support, as well as a sample flow that could support each use case. You're certainly not limited to these use cases, but they can be a helpful jumping off point as you plan your app's implementation. ## SEO List Suggested Keywords Flow A Wix user wishes to determine the strongest SEO keywords for their site. When the `quotaEnabled` parameter is set to `true` in the configuration, you return a quota object in addition to the data object. 1. The Wix user provides a keyword to Wix to check its SEO strength. 2. Wix sends a [List Suggested Keywords](https://dev.wix.com/docs/rest/business-management/marketing/service-plugins/seo-keywords-suggestions-service-plugin/list-suggested-keywords.md) request to your app using the configured `baseUri`. Example request object: ```json { "keyword": "pizza", "countryCode": "US" } ``` 3. Your app sends a response. Wix expects an object containing either a 4xx HTTP status code (and some errors) or a 200 HTTP status code and the List Suggested Keywords response. You can see an example of the response in the [List Suggested Keywords](https://dev.wix.com/docs/rest/business-management/marketing/service-plugins/seo-keywords-suggestions-service-plugin/list-suggested-keywords.md) code example. ## Get Quota Flow When a Wix user initially opens the SEO page in the Dashboard, Wix requests information about the current quota plan. 1. The Wix user opens the SEO page in the Dashboard. 2. Wix sends a [Get Quota](https://dev.wix.com/docs/rest/business-management/marketing/service-plugins/seo-keywords-suggestions-service-plugin/get-quota.md) request to your app using the configured `baseUri`. No parameters are sent. 3. Your app sends a response. Wix expects an object containing either a 4xx HTTP status code (and some errors) or a 200 HTTP status code and the Get Quota response. You can see an example of the response in the [Get Quota](https://dev.wix.com/docs/rest/business-management/marketing/service-plugins/seo-keywords-suggestions-service-plugin/get-quota.md) code example.