> ## Documentation Index
> Fetch the complete documentation index at: https://visaflo.ca/knowledge-base/llms.txt
> Use this file to discover all available pages before exploring further.

# Search clients

> Find clients in the API key's VisaFlo workspace.

`GET https://api.visaflo.app/api/public/client/search`

Supply `email` for an exact match or `name` for a case-sensitive prefix match against first or last name.

```bash theme={null}
curl "https://api.visaflo.app/api/public/client/search?email=jane@example.com" \
  -H "X-API-Key: YOUR_API_KEY"
```

Returns `200` with `data`, an array of `{ id, firstName, lastName, email }`.
