A ALEFBADeveloper Platform
Status Trust

Seller API

Orders

Retrieve seller-authorized order information through ALEFBA API v1.

Available

Endpoints

GET/api/v1/orders
GET/api/v1/orders?id=123

List orders

bash
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

bash
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

Expected errors

StatusMeaning
401Missing, invalid, inactive or revoked API key.
404Order not found or not available to the authenticated seller.
429Daily request limit reached.
500Unexpected server error.

Read-only documentation: This portal currently documents retrieval routes only. It does not claim public order mutation endpoints.