---
title: "Cycle Count - Get All"
method: GET
path: "/cycle_count/get_all"
tags: ["cycle_count"]
---

# Cycle Count - Get All

`GET /cycle_count/get_all`

Retrieve all cycle counts with optional filtering by status and warehouse.

## Query parameters

- `start` string, required — Start date/time filter for log entries
- `end` string, required — End date/time filter for log entries

## Response `200`

Array of cycle counts within the date range

- object
  - `cycle_counts` CycleCount[], required — Array of cycle counts
    - `_id` string, required — Unique cycle count identifier
    - `account_id` string — Account ID
    - `number` number, required — Auto-incremented cycle count number
    - `name` string — Cycle count name
    - `warehouse_id` string, required — Warehouse ID
    - `location_id` string, required — Location ID
    - `status` 'created' | 'saved', required — Cycle count status
    - `allow_ad_hoc` boolean — Whether ad-hoc item scanning is allowed
    - `items` CycleCountItem[] — Items in the cycle count
      - `item_id` string, required — Item ID
      - `quantity` number, required — Counted quantity
      - `ad_hoc` boolean — Whether the item was added ad-hoc during scanning
      - `note` string — Note for this item
      - `delta` number — Difference between scanned quantity and on-hand quantity
      - `old_on_hand` number — On-hand quantity before cycle count was saved
      - `scanned_serial_numbers` string[] — Serial numbers scanned for this item
    - `log` CycleCountLogEntry[] — Activity log entries
      - `user_id` string, nullable — User ID who performed the action
      - `action` string, required — Action type (created, saved, etc.)
      - `time` string, required — ISO 8601 timestamp of the action

## Other responses

- `400` — Bad request
- `401` — Unauthorized
- `403` — Forbidden. Insufficient permissions.
- `429` — Too many requests. Rate limit exceeded.
- `500` — Internal server error.

---

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