A ALEFBADeveloper Platform
Status Trust

Security

Authentication

Seller API operations require a valid ALEFBA live API key and seller-level authorization.

Authentication method

Send your API key as a Bearer token in the HTTP Authorization header.

http
Accept: application/json
Content-Type: application/json
Authorization: Bearer alefba_live_YOUR_API_KEY

Example request

bash
curl --request GET \
  --url "https://alefba.eu/api/v1/ping" \
  --header "Accept: application/json" \
  --header "Authorization: Bearer alefba_live_YOUR_API_KEY"

Successful health-check response

json
{
  "success": true,
  "data": {
    "message": "ALEFBA API v1 is alive",
    "seller_id": 123,
    "time": "2026-07-24T15:00:00+00:00"
  }
}

Authentication errors

StatusCodeMeaning
401missing_keyThe Authorization Bearer token was not supplied.
401invalid_keyThe API key is invalid, inactive or revoked.
429rate_limitedThe API key reached its daily request limit.

Security principles

Live keys: ALEFBA keys use the alefba_live_ prefix. The complete key is a secret.