v1
latestOpenAPI 3.1.02026-07-242735131.1 MBPricing Plans
List pricing plans
List all pricing plans for a company. Currently the endpoint only returns the pricing plans for the EOR monthly product and the contractor products (Standard, Plus and COR).
Scopes
| Category | Read only Scope | Write only Scope (read access implicit) |
|---|---|---|
| Manage companies (company_management) | View pricing plans (pricing_plan:read) | Manage pricing plans (pricing_plan:write) |
get/v1/companies/{company_id}/pricing-plans
Path parameters
company_idstring uuid required
Identifier of the employment being terminated.
Example:663e0b79-c893-45ff-a1b2-f6dcabc098b5
Company ID
Response
Success
Example response
{
"data": {
"pricing_plans": [
{
"base_price": {
"amount": 29900,
"currency": {
"code": "CZK",
"name": "Czech Koruna",
"symbol": "Kč"
}
},
"end_date": "2025-12-31",
"id": "3b840951-099f-4bd5-90b9-032f7bfe51d9",
"price": {
"amount": 29900,
"currency": {
"code": "CZK",
"name": "Czech Koruna",
"symbol": "Kč"
}
},
"product": {
"description": "EOR Monthly",
"features": [
"Feature 1",
"Feature 2"
],
"frequency": "monthly",
"name": "EOR Monthly",
"short_name": "EOR",
"tier": "standard"
},
"start_date": "2025-01-01",
"type": "termed"
}
]
}
}