Skip to main content
GET
/
v1rc1
/
search
/
suggest
curl --request GET \
  --url 'https://openapi.msu.io/v1rc1/search/suggest?keyword=sword&type=item' \
  --header 'Content-Type: application/json' \
  --header 'x-nxopen-api-key: YOUR_API_KEY'
{
  "success": true,
  "data": {
    "suggestions": []
  }
}
Keywords shorter than 2 characters return an empty list without error. Keywords are case-insensitive (normalized to lowercase internally). Results are cached for 10 seconds per unique (keyword, type, tokenType) combination.

Query parameters

keyword
string
Search keyword (minimum 2 characters)
type
string
required
Autocomplete type (item, character, user). Returns 400 INVALID_ARGUMENT if not provided.
tokenType
string
Token type filter (all, nft, ft)
size
integer
Number of results to return

Response

success
boolean
Indicates if the request was successful
data
object
curl --request GET \
  --url 'https://openapi.msu.io/v1rc1/search/suggest?keyword=sword&type=item' \
  --header 'Content-Type: application/json' \
  --header 'x-nxopen-api-key: YOUR_API_KEY'
{
  "success": true,
  "data": {
    "suggestions": []
  }
}