# Returns TOP N most visited cities, N is 5 by default **GET /api/Cities/trending-destinations** This endpoint allows clients to retrieve a curated list of trending destinations, specifically the topmost visited cities. The response includes essential details for each city, such as its unique identifier, name, and a visually appealing thumbnail. The number of trending destinations to be retrieved can be specified using the count parameter. If no count is provided, the default is set to 5. Sample request: GET /trending-destinations?count=3 ## Servers - http://api.example.com: http://api.example.com () ## Parameters ### Query parameters - **count** (integer(int32)) The number of trending destinations to retrieve. Default is 5. ## Responses ### 200 Returns TOP N most visited cities, N is 5 by default #### Body: application/json (array[object]) - **id** (string(uuid)) - **name** (string | null) - **country** (string | null) - **cityImage** (object) - **Additional properties are NOT allowed** () [Powered by Bump.sh](https://bump.sh)