Skip to main content
POST
/
api
/
wantedly
/
companies
/
similar
/wantedly/companies/similar
curl --request POST \
  --url https://api.anysite.io/api/wantedly/companies/similar \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company": 123,
  "count": 3,
  "timeout": 300
}
'
[
  {
    "id": 123,
    "@type": "@wantedly_company_brief",
    "name": "<string>",
    "image": "<string>",
    "description": "<string>",
    "web_url": "<string>",
    "founder": "<string>",
    "founded_on": "<string>",
    "payroll_count": 123,
    "address_prefix": "<string>",
    "address_suffix": "<string>",
    "latitude": 123,
    "longitude": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
company
integer
required

Numeric Wantedly company id

Example:

1

count
integer
required

Max number of similar companies to return

Required range: 1 <= x <= 5
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
@type
string
default:@wantedly_company_brief
name
string | null
image
string | null
description
string | null
web_url
string | null
founder
string | null
founded_on
string | null
payroll_count
integer | null
address_prefix
string | null
address_suffix
string | null
latitude
number | null
longitude
number | null