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

# Autocomplete Filters

> Find the exact location and technology values accepted by Prospect search filters

Use the Meta API autocomplete endpoints to turn a user's text into the exact values required by the Prospect API. Both endpoints require your API key in the `Authorization` header and a query of at least three characters.

## Location autocomplete

`GET https://wiza.co/api/meta/location_autocomplete?query=tor`

Searches the available location catalog and returns up to 10 matching locations and regional groups. Each result includes:

* `key` — the exact location value to send in a search filter
* `bucket` — the matching location boundary: `city`, `state`, `country`, `continent`, or `group`
* `count` — the number of matching records in the catalog

```json theme={"dark"}
{
  "status": 200,
  "data": [
    {
      "key": "Toronto, Ontario, Canada",
      "bucket": "city",
      "count": 1234
    }
  ]
}
```

Copy the result's `key` to `v` and its `bucket` to `b` in the [`location` or `company_location` Prospect filter](/api-reference/prospect/prospect-search). For example:

```json theme={"dark"}
{
  "company_location": [
    {
      "v": "Toronto, Ontario, Canada",
      "b": "city"
    }
  ]
}
```

## Technographics autocomplete

`GET https://wiza.co/api/meta/technology_autocomplete?query=aws`

Searches the technology catalog and returns up to 10 technologies that match a technology name or slug. Each result includes:

* `name` — the technology name to display to your user
* `slug` — the exact value accepted by the Prospect API `technologies` filter

```json theme={"dark"}
{
  "status": {
    "code": 200,
    "message": ""
  },
  "data": [
    {
      "slug": "amazon-web-services",
      "name": "Amazon Web Services (AWS)"
    }
  ]
}
```

Copy the result's `slug` to `v` in the [`technologies` Prospect filter](/api-reference/prospect/prospect-search). Add `s: "e"` when you want to exclude a technology:

```json theme={"dark"}
{
  "technologies": [
    {
      "v": "amazon-web-services"
    },
    {
      "v": "salesforce",
      "s": "e"
    }
  ]
}
```
