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

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
company
string
required

Wantedly company alias (e.g. wantedly) or numeric id

Minimum string length: 1
Examples:

"wantedly"

"sansan"

"1"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
name
string
required
@type
string
default:@wantedly_company
what_description
string | null
web_url
string | null
address_prefix
string | null
address_suffix
string | null
latitude
number | null
longitude
number | null
image
string | null
cover
string | null
industries
string[]