> 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 Kitting Work Orders


GET https://api.shipbob.com/Experimental/kitting

Returns kitting work orders belonging to the authenticated merchant, optionally filtered by completion date range, fulfillment center, and external-sync status. Intended for idempotent polling.


Reference: https://developer.shipbob.com/experimental/api/kitting/get-kitting-work-orders

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

### Query parameters

- `completed_from` (string, optional) — Inclusive lower bound on completion timestamp. Must carry a zone designator, either a trailing Z (e.g. 2026-01-01T00:00:00Z) or an explicit offset (e.g. 2026-01-01T00:00:00-05:00), and is compared as the UTC instant it denotes. Values without a zone designator are rejected with a 400.
- `completed_to` (string, optional) — Inclusive upper bound on completion timestamp. Must carry a zone designator, as with completed_from. Values without one are rejected with a 400, as is a range where completed_to precedes completed_from.
- `fulfillment_center_id` (integer, optional) — Filter results to a single fulfillment center.
- `is_externally_synced` (boolean, optional) — Pass false to retrieve only work orders that have not yet been externally synced.
- `page` (integer, optional, default: 1) — 1-based page number.
- `limit` (integer, optional, default: 50) — Page size. Maximum 250.

## Response

### 200

Success

- `data` (list of object, optional) — The kitting work orders for this page.
  - `completed_at` (datetime, optional, nullable) — When the work order's status transitioned to Completed. Null if not yet completed.
  - `end_kitted_inventory_id` (integer, optional) — The inventory identifier for the end kitted product.
  - `fulfillment_center_id` (integer, optional) — The fulfillment center processing this work order.
  - `is_externally_synced` (boolean, optional) — Whether this work order has already been synced by the polling caller.
  - `line_items` (list of object, optional) — The component line items for this kitting work order.
    - `inventory_id` (integer, optional) — The inventory identifier for this component.
    - `lot_date` (string, optional, nullable) — Expiration date of the lot this component was sourced from. A calendar date at midnight carrying no zone designator, unlike completed_at — do not convert it between timezones. Deliberately not declared as format date-time, which would promise an RFC 3339 offset this value does not carry.
    - `lot_number` (string, optional, nullable) — The lot this component was sourced from, if a lot restriction was specified.
    - `quantity_requested` (integer, optional) — The quantity of this component required per kit.
  - `lot_date` (string, optional, nullable) — Lot expiration date associated with the work order's output kit. A calendar date at midnight carrying no zone designator, unlike completed_at — do not convert it between timezones. Deliberately not declared as format date-time, which would promise an RFC 3339 offset this value does not carry.
  - `lot_number` (string, optional, nullable) — Lot number associated with the work order's output kit.
  - `quantity_requested` (integer, optional) — The number of kits requested.
  - `shipment_id` (integer, optional) — The shipment identifier for this kitting work order.
  - `status` (enum, optional, nullable) — Null when the work order has no processing record yet.
    - Allowed values: `AwaitingPicking`, `Picked`, `Processing`, `Stowing`, `Completed`
  - `work_order_type` (enum, optional)
    - Allowed values: `Kitting`
- `limit` (integer, optional) — The page size used for this response.
- `page` (integer, optional) — The current page number.
- `total` (integer, optional) — Total number of kitting work orders matching the filters, across all pages.

## Errors

### 500 Internal Server Error

Server Error

- `details` (any, optional, nullable)
- `errors` (list of string, optional)
- `message` (string, optional)
- `stackTrace` (string, optional, nullable)

## Examples

**Response**

```json
{
  "data": [
    {
      "completed_at": "2024-01-16T18:32:00+00:00",
      "end_kitted_inventory_id": 9001,
      "fulfillment_center_id": 1,
      "is_externally_synced": false,
      "line_items": [
        {
          "inventory_id": 8001,
          "lot_date": "2024-01-15T00:00:00+00:00",
          "lot_number": "LOT-2024-B2B",
          "quantity_requested": 5
        }
      ],
      "lot_date": "2024-01-15T00:00:00+00:00",
      "lot_number": "LOT-2024-001",
      "quantity_requested": 10,
      "shipment_id": 5001,
      "status": "Completed",
      "work_order_type": "Kitting"
    }
  ],
  "limit": 50,
  "page": 1,
  "total": 1
}
```

**SDK Code**

```python default
import requests

url = "https://api.shipbob.com/Experimental/kitting"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.json())
```

```javascript default
const url = 'https://api.shipbob.com/Experimental/kitting';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

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/Experimental/kitting"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("Authorization", "Bearer <token>")

	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/Experimental/kitting")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
```

```java default
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://api.shipbob.com/Experimental/kitting")
  .header("Authorization", "Bearer <token>")
  .asString();
```

```php default
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://api.shipbob.com/Experimental/kitting', [
  'headers' => [
    'Authorization' => 'Bearer <token>',
  ],
]);

echo $response->getBody();
```

```csharp default
using RestSharp;

var client = new RestClient("https://api.shipbob.com/Experimental/kitting");
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "Bearer <token>");
IRestResponse response = client.Execute(request);
```

```swift default
import Foundation

let headers = ["Authorization": "Bearer <token>"]

let request = NSMutableURLRequest(url: NSURL(string: "https://api.shipbob.com/Experimental/kitting")! 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()
```