Abandoned carts are shopping carts that were started but not converted into orders. Fenicia aggregates them from all connected channels so you can analyze, recover, or close them.
https://api.fenicia.ioAll endpoints require Authorization: Bearer fn_live_....
Paginated list of abandoned carts. Requires abandoned_carts:read.
curl "https://api.fenicia.io/orders/abandoned-carts?limit=20&status=open" \
-H "Authorization: Bearer fn_live_your_api_key"Get the full detail of an abandoned cart including line items. Requires abandoned_carts:read.
Returns the total count of abandoned carts. Requires abandoned_carts:read.
Aggregate statistics: total carts, total value, recovery rate. Requires abandoned_carts:read.
curl https://api.fenicia.io/orders/abandoned-carts/stats \
-H "Authorization: Bearer fn_live_your_api_key"Trigger a recovery action on the cart (typically sends a recovery email with the checkout link). Requires abandoned_carts:update.
curl -X POST https://api.fenicia.io/orders/abandoned-carts/cart_01HXYZ/recover \
-H "Authorization: Bearer fn_live_your_api_key"Close the cart as non-recoverable. Requires abandoned_carts:update.
curl -X POST https://api.fenicia.io/orders/abandoned-carts/cart_01HXYZ/close \
-H "Authorization: Bearer fn_live_your_api_key"Tip
Recovery rate = carts that converted into orders / total carts. A healthy recovery rate is typically 10-20% depending on industry.