> 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.

# FAQ

> Common questions

PAT is for single merchants with full access, while OAuth 2.0 is for multi-user apps with granular permissions. ([Learn more](/auth))

Check the `X-RateLimit-Remaining` header in API responses. ([Learn more](/rate-limit))

If there is an additional page you will see `next-page` in the header.

ShipBob inventory items uses ounces (oz) and this is reflected in our API. For reference, see in the [Get an inventory item](/api/2026-01/inventory/--get-inventory#response-dimensions) response.

ShipBob inventory items uses inches (in) and this is reflected in our API. For reference, see in the [Get an inventory item](/api/2026-01/inventory/--get-inventory#response-dimensions) response.

You can find the fulfillment centers you have access to by making a request to the GET FulfillmentCenter endpoint at [api.shipbob.com/2026-01/fulfillment-center](/api/2026-01/receiving/get-fulfillment-centers). The response will return the locations (fulfillment centers and hubs) you have access to. \
\
Here is a sample response:

```json
[
	{
		"id": 228,
		"name": "Moreno Valley (CA)",
		"timezone": "Pacific Standard Time",
		"address1": "28010 Eucalyptus Ave",
		"address2": "Building #1",
		"city": "Moreno Valley",
		"state": "CA",
		"country": "US",
		"zip_code": "92555",
		"phone_number": "8444744726",
		"email": "support@shipbob.com"
	}
]
```

If you are using a ShipBob sandbox account make sure to update your request to `sandbox-api.shipbob.com/2026-01/fulfillment-center`.

You can find this by looking at the `invoice_amount` in a shipment inside an order. For example, make request to [GET Orders](/api/2026-01/orders/get-orders), [GET Order](/api/2026-01/orders/get-order), or [GET Shipment](/api/2026-01/orders/get-one-shipment-by-shipment-id). You will see this in the payload returned:

```
{
	...
 	"invoice_amount": 7.77,
	...
}
```

Download our OpenAPI specs to use in Postman or another API client.