> 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 # GetAdsTxt # Package: txtFileServer # Namespace: AdsServiceV2 # Method link: https://dev.wix.com/docs/api-reference/business-management/marketing/seo/txt-file-server/ads-txt/get-ads-txt.md ## Permission Scopes: Manage Ads.txt: SCOPE.DC-PROMOTE.MANAGE-ADS-TXT ## Introduction Retrieves the Ads.txt file. --- ## REST API ### Schema ``` Method: getAdsTxt Description: Retrieves the Ads.txt file. URL: https://www.wixapis.com/promote-seo-robots-server/v2/ads Method: GET Method parameters: query param name: subdomain | type: subdomain | description: Subdomain of Ads.txt, for example `www`, `es`, `fr`. Default is `www`. Return type: GetAdsTxtResponse - name: adsTxt | type: AdsTxt | description: Ads txt object - name: content | type: string | description: Content of Ads.txt. - name: default | type: boolean | description: Whether current Ads.txt is Wix's default. - name: subdomain | type: string | description: Subdomain of Ads.txt, for example `www`, `es`, `fr`. Default is `www`. Possible Errors: HTTP Code: 428 | Status Code: FAILED_PRECONDITION | Application Code: | Description: Site GUID is missing. ``` ### Examples ### Get Ads.txt Example ```curl curl GET https://www.wix.com/_api/promote-seo-txt-file-server/v2/ads \ -H 'Content-Type: application/json;charset=UTF-8' \ -H 'Authorization: ' \ -H 'subdomain: www' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.txtFileServer.AdsServiceV2.getAdsTxt(options) Description: Retrieves the Ads.txt file. Method parameters: param name: options | type: GetAdsTxtOptions none - name: subdomain | type: string | description: Subdomain of Ads.txt, for example `www`, `es`, `fr`. Default is `www`. Return type: PROMISE - name: adsTxt | type: AdsTxt | description: Ads txt object - name: content | type: string | description: Content of Ads.txt. - name: default | type: boolean | description: Whether current Ads.txt is Wix's default. - name: subdomain | type: string | description: Subdomain of Ads.txt, for example `www`, `es`, `fr`. Default is `www`. Possible Errors: HTTP Code: 428 | Status Code: FAILED_PRECONDITION | Application Code: | Description: Site GUID is missing. ``` ### Examples ### getAdsTxt ```javascript import { adsTxt } from '@wix/marketing'; async function getAdsTxt(options) { const response = await adsTxt.getAdsTxt(options); }; ``` ### getAdsTxt (with elevated permissions) ```javascript import { adsTxt } from '@wix/marketing'; import { auth } from '@wix/essentials'; async function myGetAdsTxtMethod(options) { const elevatedGetAdsTxt = auth.elevate(adsTxt.getAdsTxt); const response = await elevatedGetAdsTxt(options); } ``` ### getAdsTxt (self-hosted) Self-hosted SDK calls require you to [create a client](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/about-the-wix-client.md). ```javascript import { createClient } from '@wix/sdk'; import { adsTxt } from '@wix/marketing'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { adsTxt }, // Include the auth strategy and host as relevant }); async function getAdsTxt(options) { const response = await myWixClient.adsTxt.getAdsTxt(options); }; ``` ---