Skip to main content
POST
/
company-contact
Extract emails, phones, and social profiles from a domain
curl --request POST \
  --url https://api.tryhuntr.com/company-contact \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "domain": "stripe.com"
}
'
{
  "success": true,
  "request_id": "req_1746123456_cc1x2y",
  "domain": "stripe.com",
  "result": {
    "emails": [
      "press@stripe.com",
      "support@stripe.com"
    ],
    "phones": [
      "+14155551234"
    ],
    "social_profiles": {
      "twitter": "https://twitter.com/stripe",
      "linkedin": "https://www.linkedin.com/company/stripe",
      "github": "https://github.com/stripe"
    },
    "sources": [
      "https://stripe.com",
      "https://stripe.com/contact"
    ],
    "pages_checked": 3
  },
  "price": 0.012,
  "credits_remaining": 4.99
}

Authorizations

x-api-key
string
header
required

Your Huntr API key. Get one at tryhuntr.com. Pass as x-api-key header on all authenticated requests.

Body

application/json
domain
string
required

Domain to scan, e.g. stripe.com. Subdomains and http:// prefix are accepted and normalized.

keywords
string[]

Optional. Extra page keywords to prioritize, e.g. ["leadership", "locations"].

Response

Contact extraction complete.

success
boolean
request_id
string
domain
string

Normalized domain that was scanned.

result
object
price
number

$0.012 when emails or phones found, $0.00 when nothing found.

credits_remaining
number