Skip to main content
GET
/
country
/
lists
List countries
curl --request GET \
  --url https://demo.onlinebillingform.com/api/v2/country/lists \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "countries": {
    "current_page": 1,
    "data": [
      {
        "id": 1,
        "name": "Afghanistan",
        "iso2": "AF",
        "iso3": "AFG",
        "postcode_required": 0
      }
    ],
    "last_page": 17,
    "per_page": 15,
    "total": 253
  }
}

Documentation Index

Fetch the complete documentation index at: https://www.billingserv.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use Authorization: Bearer <live_api_key>.

Response

OK

success
boolean