About this endpoint
What it does
Searches for domains related to a keyword intent and returns the original query, the limit used, and a list of matching domain results.
Query Parameter(s)
| Attribute | Type | Mandatory | Description |
|---|---|---|---|
| term | String | Yes | Search term to use. Must be at least 1 character long. |
| limit | Integer | No | Maximum number of results to return. Default: 200. Minimum: 1. Maximum: 2000. |
Header(s)
| Attribute | Type | Mandatory | Description |
|---|---|---|---|
| x-rapidapi-proxy-secret | String | No | Proxy secret header. |
Response
Returns a JSON object with query as a string, limit as an integer, and results as an array of objects. Each object in results includes domain as a string, score as a number, matched_keywords as an integer, and total_hits as an integer.
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| query | String | Yes | The search term used in the request. |
| limit | Integer | Yes | The limit applied to the response. |
| results | Object Array | Yes | Matching domain results. Each item includes domain, score, matched_keywords, and total_hits. |
| results[].domain | String | Yes | Domain name. |
| results[].score | Number | Yes | Match score. |
| results[].matched_keywords | Integer | Yes | Number of matched keywords. |
| results[].total_hits | Integer | Yes | Total hits. |