Cost: 8 credits
POST
/
companies
/
contacts
Company contacts API
curl --request POST \
  --url https://api.workfloo.ws/v0/companies/contacts \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "url": "https://workfloows.com"
}'
{
"response": {
"success": true
},
"results": {
"domain": "workfloows.com",
"company": {
"name": "Workfloows",
"description": "Workfloows is focused on workflow automation and building internal tools with low-code software. The company provides advanced and customized solutions for web scraping, AI/LLM workflows, and system integrations."
},
"contacts": [
{
"type": "email",
"value": "oskar@workfloows.com",
"source_url": "https://workfloows.com"
}
],
"addresses": [],
"people": [
{
"name": "Oskar",
"title": "Automation Developer",
"department": null,
"contacts": [
{
"type": "email",
"value": "oskar@workfloows.com",
"source_url": "https://workfloows.com"
}
],
"location": null,
"linkedin": "https://www.linkedin.com/in/oskarkramarz/",
"source_url": "https://workfloows.com"
}
],
"socials": [
{
"platform": "YouTube",
"url": "https://www.youtube.com/@workfloows"
},
{
"platform": "LinkedIn",
"url": "https://www.linkedin.com/in/oskarkramarz/"
},
{
"platform": "X",
"url": "https://twitter.com/workfloows"
}
]
}
}
Crawls a given company website and retrieves contact details. Returns comprehensive contact information including:
  • company profile,
  • contacts (emails, phone numbers),
  • addresses,
  • people (names, titles, contact details),
  • social media profiles.
This API endpoints automaticaly manages proxy and CAPTCHA solving.

Authorizations

x-api-key
string
header
required

Body

application/json
url
string<uri>
required

Target URL to scrape (including protocol)

Example:

"https://workfloows.com"

Response

Successful response

response
object
results
object