***

title: searchTollFree
slug: /reference/typescript/rest/compat/phone-numbers/search-toll-free
description: Search for available toll-free numbers in a country.
max-toc-depth: 3
---------------------

For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

Search for available toll-free phone numbers in a specific country.

<EndpointSchemaSnippet endpoint="GET /Accounts/{AccountSid}/AvailablePhoneNumbers/{IsoCountry}/TollFree" />

## **Response Example**

<EndpointResponseSnippet endpoint="GET /Accounts/{AccountSid}/AvailablePhoneNumbers/{IsoCountry}/TollFree" />

## **Example**

```typescript {8}
import { RestClient } from "@signalwire/sdk";

const client = new RestClient({
  project: "your-project-id",
  token: "your-api-token",
  host: "your-space.signalwire.com"
});
const numbers = await client.compat.phoneNumbers.searchTollFree("US", { Contains: "800" });
```