Skip to main content
Fetch the list of available billers (providers) for a specific category. Use this to display provider options to your users before they select a package.

Usage

Pass a category query parameter to filter billers by type.
curl https://api.payvessel.com/api/v1/biller-reseller/billers?category=betting \
  -H "api-key: YOUR_API_KEY" \
  -H "api-secret: YOUR_SECRET_KEY"

Response fields

Each biller in the response includes:
FieldTypeDescription
biller_idstringUnique identifier for the biller
biller_namestringDisplay name (e.g. “Bet9ja”, “SportyBet”)
biller_iconstringURL to the biller’s logo
min_amountinteger or nullMinimum order amount (if applicable)
max_amountinteger or nullMaximum order amount (if applicable)
statusinteger or nullBiller availability status

Next step

After selecting a biller, call Get Biller Items to retrieve the available packages.

API Reference

Full request/response details and Try it