---
title: "List Benefit Offers"
method: GET
path: "/v1/benefit-offers/country-summaries"
tags: ["Benefit Offers"]
---

# List Benefit Offers

`GET /v1/benefit-offers/country-summaries`

List benefit offers for each country.


## Scopes

| Category | Read only Scope | Write only Scope (read access implicit) |
|---|---|---|
| Manage company resources (`company_admin`) | View benefit offers (`benefit_offer:read`) | Manage benefit offers (`benefit_offer:write`) |

## Headers

- `Authorization` string, required

## Response `200`

Success

- CountrySummariesResponse — Response containing a company's benefit offering summaries broken down by country. Each country includes aggregate enrollment statistics and details of all offered benefit groups and tiers.
  - `data` object, required
    - `company_id` string, required — The unique identifier (UUID) of the company these benefit summaries belong to.
    - `country_summaries` CountrySummary[], required — Benefit offering summaries for each country where the company has employees.
      - `country` Country, required — A supported country on Remote
        - `alpha_2_code` string, required — The ISO 3166-1 alpha-2 country code (e.g., "PT").
        - `code` string, required — The ISO 3166-1 alpha-3 country code (e.g., "PRT"). This is the primary code used across the Remote API.
        - `contractor_products_available` string[] — Contractor product names available for this country
        - `country_subdivisions` CountrySubdivision[], nullable — Administrative subdivisions of the country (e.g., states, provinces, districts). Null if the country has no subdivisions relevant to Remote's services.
          - `code` string — The ISO 3166-2 subdivision code (e.g., "PT-11" for Lisboa).
          - `name` string, required — The subdivision's name (e.g., "Lisboa", "California").
          - `subdivision_type` string — The type of subdivision (e.g., "District", "State", "Province").
        - `employment_agreement_preview_available` boolean — Whether an Employment Agreement preview is available for this country.
        - `eor_onboarding` boolean — Whether EOR (Employer of Record) onboarding is available in this country.
        - `locked_benefits` string — When benefit plan selections become locked for this country (e.g., "after_first_hire" means benefits cannot be changed after the first employee is hired).
        - `name` string, required — The country's full English name.
        - `region` string — The geographic region the country belongs to (e.g., "Europe", "Asia", "Americas").
        - `subregion` string, nullable — The geographic subregion (e.g., "Southern Europe", "Southeast Asia"). Null for some countries.
        - `supported_json_schemas` string[] — The list of JSON schema form names available for this country (e.g., "address_details", "contract_details"). Use these with the Show form schema endpoint to get country-specific field requirements.
      - `employee_stats` EmployeeStats, required — Enrollment statistics for a benefit at a given level (country, group, or tier). Shows how many employees have been offered the benefit versus how many are actively enrolled.
        - `number_of_employees_enrolled` integer, required — The number of employees currently enrolled in this benefit. An enrolled employee has an active benefit record.
        - `number_of_employees_offered` integer, required — The total number of employees who have been offered this benefit. An employee is counted as offered once a benefit offer record exists, regardless of whether they have enrolled.
      - `offered_benefit_groups` OfferedBenefitGroup[], required — All benefit groups that have been offered to employees in this country.
        - `benefit_group` BenefitGroup, required — A category of benefits (e.g., "Health", "Dental", "Life Insurance") with a defined policy period. Each group contains one or more tiers representing different coverage levels.
          - `id` string, required — The unique identifier (UUID) of the benefit group.
          - `name` string, required — The name of the benefit category (e.g., "Health", "Dental", "Life Insurance").
          - `policy_end_date` string, date, required — The date when the policy period ends for this benefit group (ISO 8601 format). Benefits may need to be renewed after this date.
          - `policy_start_date` string, date, required — The date when the policy period begins for this benefit group (ISO 8601 format).
        - `employee_stats` EmployeeStats, required — Enrollment statistics for a benefit at a given level (country, group, or tier). Shows how many employees have been offered the benefit versus how many are actively enrolled.
          - `number_of_employees_enrolled` integer, required — The number of employees currently enrolled in this benefit. An enrolled employee has an active benefit record.
          - `number_of_employees_offered` integer, required — The total number of employees who have been offered this benefit. An employee is counted as offered once a benefit offer record exists, regardless of whether they have enrolled.
        - `offered_benefit_tiers` OfferedBenefitTier[], required — The individual tiers within this group that have been offered, each with their own enrollment statistics.
          - `benefit_tier` BenefitTier, required — A specific coverage level within a benefit group. For example, a "Health" benefit group might have tiers like "Basic", "Standard", and "Premium", each with different coverage and providers.
            - `description` string, required — A detailed description of what this tier covers, including the types of benefits included.
            - `id` string, required — The unique identifier (UUID) of the benefit tier.
            - `name` string, required — The name of this tier (e.g., "Premium 2024 (Medical, Dental and Vision)").
            - `providers` BenefitProvider[], required — The insurance carriers or providers associated with this tier.
              - …
          - `employee_stats` EmployeeStats, required — Enrollment statistics for a benefit at a given level (country, group, or tier). Shows how many employees have been offered the benefit versus how many are actively enrolled.
            - `number_of_employees_enrolled` integer, required — The number of employees currently enrolled in this benefit. An enrolled employee has an active benefit record.
            - `number_of_employees_offered` integer, required — The total number of employees who have been offered this benefit. An employee is counted as offered once a benefit offer record exists, regardless of whether they have enrolled.

## Other responses

- `404` — Not Found
- `422` — Unprocessable Entity

---

[API](https://skmtc.net/remote-com/apis/remote.md) · [All operations](https://skmtc.net/remote-com/apis/remote/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/remote-com/remote/versions/7e6a0c61ac82/schema)
