---
title: "List all contribution reports"
method: GET
path: "/contribution_reports"
tags: ["Contribution Reports"]
---

# List all contribution reports

`GET /contribution_reports`

Returns a list of `contribution reports`. The reports are returned sorted by creation date, with the most recent reports appearing first.

## Query parameters

- `employer_id` string
- `status` string
- `month` integer
- `year` integer
- `external_customer_id` string
- `page` integer — The page of results to return. Defaults to 1 if not provided.
- `page_size` integer — The number of results to return per page. Defaults to 10 if not provided. Maximum value is 100.

## Headers

- `X-Platform-Id` string

## Response `200`

OK

- ContributionReportResponsePagedList
  - `items` ContributionReportResponse[], required — A paginated array containing the response elements
    - `object` string — The object type
    - `id` string, required — Unique identifier for the contribution report
    - `employer_id` string, required — Unique identifier of the employer for which the report is created
    - `external_customer_id` string, nullable — Unique identifier of the customer for which the report is created. This identifier is assigned by the Employer of Record (EoR) platform to the Customer (i.e. the company using the EoR service) for which the employee is employed. This parameter is only available to EoR platforms.
    - `period` GetContributionReportPeriod, required
      - `from_date` string, date, required — Start date of the period
      - `to_date` string, date, required — End date of the period
    - `status` 'open' | 'finalized', required
    - `finalized_at` string, date-time, nullable — Date and time the report was finalized, if applicable
    - `created_at` string, date-time, required — Date and time the report was created
    - `last_updated_at` string, date-time, required — Date and time of the last update to the report
  - `page` integer, required — The current page of the results
  - `page_size` integer, required — The number of results on this page. This can be different from the requested page size if the total number of results is less than the requested page size
  - `total_count` integer, required — The total number of elements available in the response. This is the total number of elements available across all pages, not just the current page.
  - `has_next_page` boolean — Whether there are more pages available after this page
  - `has_previous_page` boolean — Whether there are more pages available before this page

---

[API](https://skmtc.net/kota/apis/kota-api.md) · [All operations](https://skmtc.net/kota/apis/kota-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/kota/kota-api/revisions/c7d3d8719330/schema)
