Skip to main content
POST
/
api
/
rikunabi
/
companies
/rikunabi/companies
curl --request POST \
  --url https://api.anysite.io/api/rikunabi/companies \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "name": "<string>",
    "@type": "@rikunabi_company",
    "ceo_name": "<string>",
    "address": "<string>",
    "phone": "<string>",
    "business_details": "<string>",
    "web_url": "<string>",
    "job_count": 123,
    "company_research": {
      "@type": "@rikunabi_company_research",
      "summary": "<string>",
      "citations": [],
      "updated_at": "<string>"
    },
    "jobs": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
company
string
required

Rikunabi NEXT company id, or a company URL containing it

Minimum string length: 1
Examples:

"332919455"

"https://next.rikunabi.com/company/332919455/"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
url
string
required
name
string
required
@type
string
default:@rikunabi_company
ceo_name
string | null
address
string | null
phone
string | null
business_details
string | null
web_url
string | null
job_count
integer | null
company_research
RikunabiCompanyResearch · object
jobs
RikunabiJobCard · object[]