<!--
{
  "availability" : [

  ],
  "documentType" : "symbol",
  "framework" : "AppleMusicAPI",
  "identifier" : "/documentation/AppleMusicAPI/Get-Catalog-Search-Suggesions",
  "metadataVersion" : "0.1.0",
  "role" : "Web Service Endpoint",
  "symbol" : {
    "kind" : "Web Service Endpoint",
    "modules" : [
      "Apple Music API"
    ],
    "preciseIdentifier" : "rest:music_api:get:v1-catalog-{}-search-suggestions"
  },
  "title" : "Get Catalog Search Suggestions"
}
-->

# Get Catalog Search Suggestions

Fetch the search suggestions for a provided term input.

## Discussion

If successful, the HTTP status code is 200 (OK) and the `results` object contains a single `terms` array. This array contains a list of possible valid search queries determined from the search hint. If unsuccessful, the HTTP status code indicates the error and the details are in the `errors` array. For more information, see [Handling Requests and Responses](/documentation/AppleMusicAPI/handling-requests-and-responses).

### Example

**Request:**

```
https://api.music.apple.com/v1/catalog/us/search/suggestions?term=beach+bunny&kinds=terms
```

**Response:**

```json
{
    "results": {
        "suggestions": [
            {
                "kind": "terms",
                "searchTerm": "beach bunny",
                "displayTerm": "beach bunny"
            },
            {
                "kind": "terms",
                "searchTerm": "oxygen beach bunny",
                "displayTerm": "oxygen beach bunny"
            },
            {
                "kind": "terms",
                "searchTerm": "cloud 9 beach bunny",
                "displayTerm": "cloud 9 beach bunny"
            }
        ]
    }
}
```

## See Also

[`SearchSuggestionsResponse`](/documentation/AppleMusicAPI/SearchSuggestionsResponse)

The response to a request for search suggestions.



---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)