> ## Documentation Index
> Fetch the complete documentation index at: https://assetpay.gg/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Search Suggestions

> Autocomplete suggestions for market item search.

# GET /client/market/suggestions

Returns lightweight search suggestions for building autocomplete in your market UI. Faster than a full market search.

**Authentication:** Client Token (`Authorization` header)

## Request

```http theme={null}
GET https://api.assetpay.gg/client/market/suggestions?q=dragon
Authorization: CLIENT_TOKEN
```

### Query Parameters

| Parameter | Type   | Required | Description                     |
| --------- | ------ | -------- | ------------------------------- |
| `q`       | string | Yes      | Search query (1-100 characters) |

## Response

```json theme={null}
{
  "requestId": "...",
  "success": true,
  "data": [
    "AWP | Dragon Lore (Factory New)",
    "AWP | Dragon Lore (Minimal Wear)",
    "AWP | Dragon Lore (Field-Tested)"
  ]
}
```

## Rate Limits

| Merchant Status | Limit              |
| --------------- | ------------------ |
| Verified        | 600 requests / min |
| Unverified      | 30 requests / min  |
