# POST /contacts/search

**Resource:** [Contacts](./contacts.md)  
**Scopes:** `contacts:read`  
**Write operation:** no

Full-text search across contact names, email, and phone. Returns up to 100 results.

## Parameters

| Name | In | Type | Required | Description |
|------|----|------|----------|-------------|
| `query` | body | string | yes | Search query |
| `limit` | body | number | no | Max results (1-100, default 25) |

## Request example

```bash
curl -X POST \
  "https://api.trustpager.com/functions/v1/api/v1/contacts/search" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "query": "john", "limit": 10 }'
```

---
Base URL: `https://api.trustpager.com/functions/v1/api/v1` — Auth: `Authorization: Bearer YOUR_API_KEY`