# AutoSuggest Client **Provider:** AutoSuggest Client **Category:** search **Base URL:** `https://api.cognitive.microsoft.com/bing/v7.0` **Auth:** api-key — `Ocp-Apim-Subscription-Key: YOUR_API_KEY` **Rate Limit:** Based on plan **Free Tier:** No **Pricing:** Enterprise / contact sales (subscription) **Docs:** https://api.cognitive.microsoft.com/bing/v7.0 ## Description Autosuggest supplies search terms derived from a root text sent to the service. The terms Autosuggest supplies are related to the root text based on similarity and their frequency or ratings of usefulness in other searches. For examples that show how to use Autosuggest, see [Search using AutoSugges ## Endpoints | Method | Endpoint | Description | |--------|----------|-------------| | GET | `https://api.cognitive.microsoft.com/bing/v7.0/Suggestions` | The AutoSuggest API lets you send a search query to Bing and get back a list of query suggestions. This section provides technical details about the query parameters and headers that you use to request suggestions and the JSON response objects that contain them. | ## Authentication API key in the request header (Ocp-Apim-Subscription-Key) ``` Ocp-Apim-Subscription-Key: YOUR_API_KEY ``` ## Sample Request ```bash curl -X GET 'https://api.cognitive.microsoft.com/bing/v7.0/Suggestions' \ -H 'Ocp-Apim-Subscription-Key: YOUR_API_KEY' ``` ## Sample Response ```json {} ``` ## Pricing Details Paid autocomplete and search suggestion API. Pricing based on usage volume. --- *Source: [API Map](https://apimap.dev/apis/autosuggest-client/) — CC BY 4.0*