Seller API
Orders
Retrieve seller-authorized order information through ALEFBA API v1.
Available
Endpoints
GET
/api/v1/ordersGET
/api/v1/orders?id=123List orders
curl --request GET \
--url "https://alefba.eu/api/v1/orders" \
--header "Accept: application/json" \
--header "Authorization: Bearer alefba_live_YOUR_API_KEY"Retrieve one order
curl --request GET \
--url "https://alefba.eu/api/v1/orders?id=123" \
--header "Accept: application/json" \
--header "Authorization: Bearer alefba_live_YOUR_API_KEY"Data handling
- Use order data only for authorized marketplace operations.
- Protect customer and delivery information.
- Do not store sensitive information longer than operationally necessary.
- Do not assume that identifiers belonging to another seller are accessible.
Expected errors
| Status | Meaning |
|---|---|
401 | Missing, invalid, inactive or revoked API key. |
404 | Order not found or not available to the authenticated seller. |
429 | Daily request limit reached. |
500 | Unexpected server error. |
Read-only documentation: This portal currently documents retrieval routes only. It does not claim public order mutation endpoints.