---
title: "Order - Get Customs Information"
method: GET
path: "/order/get_customs_information"
tags: ["order"]
---

# Order - Get Customs Information

`GET /order/get_customs_information`

Retrieve customs declaration information for an order's items.

## Query parameters

- `selector` object, required — Query selector object for filtering results
- `limit` number — Max results to return
- `skip` number — Number of results to skip
- `sort` object — Sort fields object, e.g. { "name": 1 }

## Response `200`

Customs information for orders

- object
  - `orders` CustomsOrder[], required — Orders with customs shipment item data
    - `_id` string — Order ID
    - `order_number` string — Order number
    - `store_id` string — Store ID
    - `stash` object — Order stash with shipping info
      - `shipping_information` ShippingInformation — Shipping address and info
        - `name` string — Recipient name
        - `email` string — Email address
        - `address` string — Street address line 1
        - `street2` string — Street address line 2
        - `city` string — City
        - `state` string — State or province
        - `zip` string — Postal or ZIP code
        - `country` string — Country code
        - `phone` string — Phone number
        - `company` string — Company name
        - `method` string — Shipping method
        - `is_residential` boolean — Whether the address is residential
        - `is_valid` boolean — Whether the address has been validated
        - `hash` string — Address validation hash
        - `address_type` string, nullable — Address type classification
        - `address_validation_data` object — Address validation result data
    - `shipment_items` object[] — Shipment items with customs data
      - `item_id` string — Item ID
      - `quantity` number — Quantity
      - `value` number — Retail value
      - `weight` number — Item weight
      - `weight_unit` string — Weight unit
      - `tracking_number` string — Tracking number
      - `carrier` string — Carrier provider
      - `service` string — Shipping service
      - `description` string — Customs description
      - `tariff` string — Tariff code
      - `origin` string — Country of origin

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