Skip to main content
POST
/
api
/
mynavi
/
companies
/mynavi/companies
curl --request POST \
  --url https://api.anysite.io/api/mynavi/companies \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "@mynavi_company",
    "name": "<string>",
    "website": "<string>",
    "business": "<string>",
    "established": "<string>",
    "capital": "<string>",
    "employee_count": "<string>",
    "representative": "<string>",
    "address": "<string>",
    "benefits": "<string>",
    "first_year_income": "<string>",
    "model_salary": "<string>",
    "active_job_count": 123,
    "job_ids": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
company
string
required

Mynavi Tenshoku company as a numeric company id, a /company/{id}/ URL or a job slug

Minimum string length: 1
Examples:

"402573"

"https://tenshoku.mynavi.jp/company/402573/"

"jobinfo-402573-1-12-1"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
url
string
required
@type
string
default:@mynavi_company
name
string | null
website
string | null
business
string | null
established
string | null
capital
string | null
employee_count
string | null
representative
string | null
address
string | null
benefits
string | null
first_year_income
string | null
model_salary
string | null
active_job_count
integer | null
job_ids
string[]