> For clean Markdown of any page, append .md to the page URL. > For a complete documentation index, see https://developer.shipbob.com/llms.txt. > For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://developer.shipbob.com/_mcp/server. # Get Inventory GET https://api.shipbob.com/2026-07/inventory/{inventoryId} Retrieves detailed information about a specific inventory item by its ID, including product details, variant information, and associated metadata. Returns the item record (attributes, variants, and configuration), not stock quantities; for the item's stock quantities (on-hand, committed, fulfillable) use the inventory levels by ID endpoint (GET /inventory-level/\{inventoryId}). Reference: https://developer.shipbob.com/api/inventory/get-inventory ## Authentication - `Authorization` header (bearer token, required) — Authentication using Personal Access Token (PAT) token - `Authorization` header (bearer token, required) — OAuth2 authentication using JWT tokens ## Servers - `https://api.shipbob.com` (https://api.shipbob.com, default) - `https://sandbox-api.shipbob.com` (https://sandbox-api.shipbob.com) ## Request ### Path parameters - `inventoryId` (integer, required) ## Response ### 200 OK - `barcode` (string, optional, nullable) — Barcode associated with the inventory item - `dimensions` (Inventory.DimensionsResponse, optional) — Physical dimensions of the inventory item - `inventory_id` (integer, optional) — Unique identifier for the inventory item - `is_case` (boolean, optional) — Indicates if the inventory item is stored in cases - `is_lot` (boolean, optional) — Indicates if the inventory item is tracked by lot number - `name` (string, optional, nullable) — Name of the inventory item - `sku` (string, optional, nullable) — Stock keeping unit identifier - `user_id` (integer, optional) — User ID associated with this inventory item - `variant` (Inventory.VariantResponse, optional) — Variant details including active status and product characteristics - `weight` (Inventory.WeightResponse, optional) — Weight information of the inventory item ## Errors ### 400 Bad Request Error Bad Request - `detail` (string, optional, nullable) — A human-readable explanation specific to this occurrence of the problem. - `instance` (string, optional, nullable) — A URI reference that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced. - `status` (integer, optional, nullable) — The HTTP status code for this occurrence of the problem. - `title` (string, optional, nullable) — A short, human-readable summary of the problem type. - `type` (string, optional, nullable) — A URI reference that identifies the problem type. This URI should provide human-readable documentation for the problem. ### 401 Unauthorized Error Unauthorized - `detail` (string, optional, nullable) — A human-readable explanation specific to this occurrence of the problem. - `instance` (string, optional, nullable) — A URI reference that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced. - `status` (integer, optional, nullable) — The HTTP status code for this occurrence of the problem. - `title` (string, optional, nullable) — A short, human-readable summary of the problem type. - `type` (string, optional, nullable) — A URI reference that identifies the problem type. This URI should provide human-readable documentation for the problem. ### 403 Forbidden Error Forbidden - `detail` (string, optional, nullable) — A human-readable explanation specific to this occurrence of the problem. - `instance` (string, optional, nullable) — A URI reference that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced. - `status` (integer, optional, nullable) — The HTTP status code for this occurrence of the problem. - `title` (string, optional, nullable) — A short, human-readable summary of the problem type. - `type` (string, optional, nullable) — A URI reference that identifies the problem type. This URI should provide human-readable documentation for the problem. ### 404 Not Found Error Not Found - `detail` (string, optional, nullable) — A human-readable explanation specific to this occurrence of the problem. - `instance` (string, optional, nullable) — A URI reference that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced. - `status` (integer, optional, nullable) — The HTTP status code for this occurrence of the problem. - `title` (string, optional, nullable) — A short, human-readable summary of the problem type. - `type` (string, optional, nullable) — A URI reference that identifies the problem type. This URI should provide human-readable documentation for the problem. ### 500 Internal Server Error Internal Server Error - `any` ### 503 Service Unavailable Error Service Unavailable - `any` ## Types ### Inventory.DimensionsResponse - `height` (double, optional) — Height measurement of the inventory item - `is_locked` (boolean, optional) — Indicates whether dimensions are locked and cannot be modified - `length` (double, optional) — Length measurement of the inventory item - `unit` (string, optional, nullable) — Unit of measurement for dimensions (i.e. inches) - `validated` (boolean, optional) — Indicates whether dimensions have been validated by warehouse staff - `width` (double, optional) — Width measurement of the inventory item ### Inventory.VariantResponse - `hazmat` (Inventory.HazmatResponse, optional) — Hazardous materials information - `is_active` (boolean, optional) — Indicates if the variant is currently active and available for fulfillment - `is_bundle` (boolean, optional) — Indicates if this item is a bundle of multiple products - `is_digital` (boolean, optional) — Indicates if this is a digital product (no physical fulfillment required) ### Inventory.WeightResponse - `unit` (string, optional, nullable) — Unit of measurement for weight (e.g., pounds, kilograms) - `value` (double, optional) — Weight value of the inventory item ### Inventory.HazmatResponse - `is_hazmat` (boolean, optional) — Indicates if the inventory item is classified as hazardous material - `validated` (boolean, optional) — Indicates whether hazmat status has been validated and confirmed ## Examples **Response** ```json { "barcode": "string", "dimensions": { "height": 0.1, "is_locked": true, "length": 0.1, "unit": "string", "validated": true, "width": 0.1 }, "inventory_id": 0, "is_case": true, "is_lot": true, "name": "string", "sku": "string", "user_id": 0, "variant": { "hazmat": { "is_hazmat": true, "validated": true }, "is_active": true, "is_bundle": true, "is_digital": true }, "weight": { "unit": "string", "value": 0.1 } } ``` **SDK Code** ```python default import requests url = "https://api.shipbob.com/2026-07/inventory/1" headers = {"Authorization": "Bearer "} response = requests.get(url, headers=headers) print(response.json()) ``` ```javascript default const url = 'https://api.shipbob.com/2026-07/inventory/1'; const options = {method: 'GET', headers: {Authorization: 'Bearer '}}; try { const response = await fetch(url, options); const data = await response.json(); console.log(data); } catch (error) { console.error(error); } ``` ```go default package main import ( "fmt" "net/http" "io" ) func main() { url := "https://api.shipbob.com/2026-07/inventory/1" req, _ := http.NewRequest("GET", url, nil) req.Header.Add("Authorization", "Bearer ") res, _ := http.DefaultClient.Do(req) defer res.Body.Close() body, _ := io.ReadAll(res.Body) fmt.Println(res) fmt.Println(string(body)) } ``` ```ruby default require 'uri' require 'net/http' url = URI("https://api.shipbob.com/2026-07/inventory/1") http = Net::HTTP.new(url.host, url.port) http.use_ssl = true request = Net::HTTP::Get.new(url) request["Authorization"] = 'Bearer ' response = http.request(request) puts response.read_body ``` ```java default import com.mashape.unirest.http.HttpResponse; import com.mashape.unirest.http.Unirest; HttpResponse response = Unirest.get("https://api.shipbob.com/2026-07/inventory/1") .header("Authorization", "Bearer ") .asString(); ``` ```php default request('GET', 'https://api.shipbob.com/2026-07/inventory/1', [ 'headers' => [ 'Authorization' => 'Bearer ', ], ]); echo $response->getBody(); ``` ```csharp default using RestSharp; var client = new RestClient("https://api.shipbob.com/2026-07/inventory/1"); var request = new RestRequest(Method.GET); request.AddHeader("Authorization", "Bearer "); IRestResponse response = client.Execute(request); ``` ```swift default import Foundation let headers = ["Authorization": "Bearer "] let request = NSMutableURLRequest(url: NSURL(string: "https://api.shipbob.com/2026-07/inventory/1")! as URL, cachePolicy: .useProtocolCachePolicy, timeoutInterval: 10.0) request.httpMethod = "GET" request.allHTTPHeaderFields = headers let session = URLSession.shared let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in if (error != nil) { print(error as Any) } else { let httpResponse = response as? HTTPURLResponse print(httpResponse) } }) dataTask.resume() ```