---
title: "Get the can-make quantities for an item. Returns how much of this item can be produced
from current subcomponent inventory (on-hand and available)."
method: GET
path: "/api/items/{itemId}/can-make"
tags: ["Item"]
---

# Get the can-make quantities for an item. Returns how much of this item can be produced
from current subcomponent inventory (on-hand and available).

`GET /api/items/{itemId}/can-make`

## Path parameters

- `itemId` string, required

## Response `200`

The can-make quantities for the given item

- ItemCanMakeDto — Indicates how much of this item can be produced from its subcomponent inventory. Only applicable to make items.
  - `canMakeFromOnHand` number, double, nullable — The quantity that can be made from on-hand inventory of subcomponents of this item. Null if the planning cache has not yet been computed.
  - `canMakeFromAvailable` number, double, nullable — The quantity that can be made from available inventory (on-hand + incoming supply) of subcomponents of this item. Null if the planning cache has not yet been computed.

## Other responses

- `400` — Item is not a make item
- `404` — Item id provided was not found

---

[API](https://skmtc.net/fulcrumpro/apis/fulcrum-publicapi.md) · [All operations](https://skmtc.net/fulcrumpro/apis/fulcrum-publicapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/fulcrumpro/fulcrum-publicapi/versions/1b5649cff14a/schema)
