text-embedding-3-small). Unlike Apple’s autocomplete, semantic expansion catches keywords that share meaning but not letters — "to-do" finds "task list", "focus timer" finds "pomodoro".
Each result also carries the keyword’s volumeScore and rankVolatility so you can rank by “high volume + similar to seed” without a second roundtrip.
Query Parameters
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
| keyword | string | Yes | — | The seed keyword to expand |
| country | string | No | us | ISO 3166-1 alpha-2 storefront |
| limit | number | No | 25 | Max related keywords returned, 1–100 |
Response
cachedSeed is true when the seed already had an embedding stored (no OpenAI call needed). false means the seed was just embedded for the first time — subsequent calls within ~30 days will be cached.
The volumeScore and rankVolatility fields can be null if the keyword has not yet been enriched. The similarity floor is 0.55, so very weak matches are not returned.
Credit Cost
4 credits per request.Use Cases
- “More like this” suggestions on a keyword detail page.
- Brainstorm support: type a candidate, see semantically-adjacent search terms you would have missed.
- Build a personalised tracking list by expanding a small set of seed keywords.

