bo
Boxberry is a Russian parcel delivery and pickup-point (ПВЗ) network with thousands of locations across Russia. Its API supports delivery calculation, order creation, parcel tracking, and pickup point discovery.
With the Boxberry integration in AACFlow, you can:
- Calculate Delivery: Estimate delivery cost between cities
- Create Order: Create a new delivery order
- Parcel Info (Track): Track a parcel by tracking code
- Orders List: List recent orders in your account
- List Cities: Retrieve available delivery cities
- List Points (ПВЗ): Enumerate pickup point locations
This integration enables e-commerce fulfillment workflows, automated shipping cost estimation, and order management within Boxberry's network.
Usage Instructions
Integrate Boxberry into the workflow to manage deliveries. Requires a Boxberry API token from your account at boxberry.ru under Settings → API Access.
Tools
boxberry_calculate
Calculate delivery cost
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
apiToken | string | Yes | Boxberry API token |
fromCity | string | Yes | Origin city |
toCity | string | Yes | Destination city |
weight | number | Yes | Package weight in grams |
Output
| Parameter | Type | Description |
|---|---|---|
price | number | Delivery cost |
period | string | Estimated delivery period |
boxberry_create_order
Create a delivery order
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
apiToken | string | Yes | Boxberry API token |
fromCity | string | Yes | Origin city |
toCity | string | Yes | Destination city |
weight | number | Yes | Package weight in grams |
orderNumber | string | Yes | Your order reference number |
Output
| Parameter | Type | Description |
|---|---|---|
trackingCode | string | Boxberry tracking code |
orderId | string | Created order ID |
boxberry_parcel_info
Track a parcel
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
apiToken | string | Yes | Boxberry API token |
trackingCode | string | Yes | Boxberry tracking code |
Output
| Parameter | Type | Description |
|---|---|---|
status | string | Current parcel status |
events | array | Tracking event history |
boxberry_list_cities
List delivery cities
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
apiToken | string | Yes | Boxberry API token |
Output
| Parameter | Type | Description |
|---|---|---|
cities | array | Array of available city objects |
boxberry_list_points
List pickup points (ПВЗ)
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
apiToken | string | Yes | Boxberry API token |
Output
| Parameter | Type | Description |
|---|---|---|
points | array | Array of pickup point objects with addresses |
Links
- Official API: https://api.boxberry.ru/
- AACFlow block source: apps/aacflow/blocks/blocks/boxberry.ts

