---
title: "Get Similar Tracks"
method: GET
path: "/api/v1/recommendations/similar"
---

# Get Similar Tracks

`GET /api/v1/recommendations/similar`

Get track recommendations based on a seed track.

Parameters:
----------
<b>seed_track_id</b> : str (Spotify ID of the reference track)<br>
<b>limit</b> : int, default=20 (Number of recommendations, max 100)<br>
<b>min_popularity</b> : int, optional (Minimum popularity score 0-100)<br>
<b>genre_match</b> : bool, default=False (Prioritize same genre)<br>
<b>x_api_key</b> : str (API key for authentication)<br>

Returns:
-------
TrackIDList<br>
    List of recommended track IDs<br>

Notes:
-----
Uses audio features to find tracks with similar characteristics.

## Query parameters

- `seed_track_id` string, required
- `limit` integer
- `min_popularity` integer, nullable
- `genre_match` boolean

## Headers

- `x-api-key` string

## Response `200`

Successful Response

- TrackIDList
  - `track_ids` string[], required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/soundstat/apis/soundstat-api.md) · [All operations](https://skmtc.net/soundstat/apis/soundstat-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/soundstat/soundstat-api/revisions/d8deec5eca44/schema)
