BrandKwikID Documentation
API SuiteUtility Bills

Gas Bill Details

Fetch piped gas bill metadata for a consumer and provider. Server-side GET with Bearer auth; consumer and provider are path segments.

API reference

Try itLoading playground…
Loading…
AuthorizationBearer <token>

JWT Bearer token authentication. Obtain a token from the KwikID dashboard.

In: header

Path Parameters

consumer_number_inunknown

The consumer number.

Default""
Formatstring
provider_inunknown

The name of the provider

Default""
Formatstring

Response Body

curl -X GET "https://__mock__/verification/v2/gas/getbill//"
{
  "message": "string"
}
{
  "detail": {
    "<location>": {
      "<field_name>": [
        "string"
      ]
    }
  },
  "message": "string"
}
{
  "detail": {},
  "message": "string"
}

Overview

Call GET /verification/v2/gas/getbill/{consumer_number_in}/{provider_in} from your backend with Authorization: Bearer <token>. Replace path segments with the gas consumer number and provider slug configured for your project.

Key features

Implementation

Step 1: Call from your backend

GET /verification/v2/gas/getbill/<consumer_number>/<provider_slug> HTTP/1.1
Host: <verification-api-base-url>
Authorization: Bearer <token>

Error handling

HTTP statusWhen
400Validation or provider mapping error.
401Invalid token.

Benefits

  • Extends utility verification to piped gas users.

Next steps