Cost: 10 credits
POST
/
companies
/
similar
Similar companies API
curl --request POST \
  --url https://api.workfloo.ws/v0/companies/similar \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "url": "https://workfloows.com"
}'
{
"response": {
"success": true
},
"results": [
{
"name": "ExampleCorp",
"url": "https://example.com/",
"description": "ExampleCorp is a mock company for demonstration purposes in API documentation.",
"similarity_score": 0.95
},
{
"name": "Mockify",
"url": "https://mockify.example/",
"description": "Mockify provides sample automation tools for testing and example workflows.",
"similarity_score": 0.87
},
{
"name": "DemoSoft",
"url": "https://demosoft.mock/",
"description": "DemoSoft is a fictional SaaS platform used as an example in API responses.",
"similarity_score": 0.81
}
]
}
Performs advanced search for similar companies based on a given company URL. Returns list of companies including company:
  • name,
  • URL,
  • description,
  • similarity score (from 0 to 1, where 1 is the most similar).
Retrieves the list of max 12 similar companies.
This API endpoint automaticaly manages proxy and CAPTCHA solving.

Authorizations

x-api-key
string
header
required

Body

application/json
url
string<uri>
required

Target URL to find similar companies for (including protocol)

Example:

"https://workfloows.com"

Response

Successful response

response
object
results
object[]

List of similar companies