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

# Contact and email finder

> Contact details published on a website: email addresses, phone numbers, and the pages each was found on, for every domain or page URL you send. Addresses are co

Contact details published on a website: email addresses, phone numbers, and the pages each was found on, for every domain or page URL you send. Addresses are collected as the site publishes them and are not tested for deliverability.

<Note>Use when you have company domains, creator sites or page URLs and need someone to contact: building an outreach list, enriching leads that carry only a website, or finding the humans behind a business. One result per entry, and entries where nothing is found return no row and cost nothing. Check deliverability separately before a large send, since these addresses are collected as published, not validated.</Note>

## Price

**\$0.06 per result.** That is the rate you pay for each result the call returns, so the total depends on how many it produces.

Billing follows actual usage, so a call that returns fewer results costs less, and a call that costs nothing to serve is free. `discover` and `inspect` also return a ceiling for your specific request, which is a maximum you will never be charged above.

## Input

| Field     | Type    | Required | Notes                                                                                                                                                                                                                                                 |
| --------- | ------- | -------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `domains` | `array` | yes      | Domains or page URLs to scan, for example "example.com" or "[https://example.com/about](https://example.com/about)". At most one result, and at most one billable item, per entry: an entry with no contacts found returns nothing and is not billed. |

<Note>
  Goro forwards your input to the underlying tool unchanged, so any field the
  tool accepts works here even if it is not listed above.
</Note>

## Example

```bash theme={null}
curl -X POST https://api.usegoro.ai/v1/run \
  -H "Authorization: Bearer $GORO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"email.finder","input":{"domains":["example"]}}'
```

## Response

One row of the response. Values are illustrative.

```json theme={null}
{
  "links": [
    "https://example.com/contact",
    "https://example.com/about/press",
    "https://www.linkedin.com/company/example"
  ],
  "domain": "example.com",
  "emails": [
    "hello@example.com",
    "press@example.com",
    "dana.whitfield@example.com"
  ],
  "inputUrl": "https://example.com/about",
  "phoneNumbers": [
    "+15550117342",
    "+442071234567"
  ]
}
```
