Interswitch Billers API

The Billers API from Interswitch — 3 operation(s) for billers.

Operations 3

GET /api/v2/quickteller/categorys List Biller Categories #
GET /api/v2/quickteller/categorys/{categoryId}/billers List Billers In Category #
GET /api/v2/quickteller/billers List All Billers #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/interswitch-billers-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

interswitch-billers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Interswitch Bills Payment Billers API
  description: 'Quickteller bills payment service — list billers, get payment items,

    validate customer references, and submit payment advices for hundreds of

    Nigerian billers including DSTV, GOTV, PHCN, water boards, school fees,

    and government TSA payments.

    '
  version: '2024-01-01'
servers:
- url: https://sandbox.interswitchng.com
  description: Sandbox
- url: https://saturn.interswitchng.com
  description: Production
security:
- InterswitchAuth: []
tags:
- name: Billers
paths:
  /api/v2/quickteller/categorys:
    get:
      tags:
      - Billers
      summary: List Biller Categories
      operationId: listBillerCategories
      responses:
        '200':
          description: Biller categories.
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    categoryId:
                      type: integer
                    categoryName:
                      type: string
  /api/v2/quickteller/categorys/{categoryId}/billers:
    get:
      tags:
      - Billers
      summary: List Billers In Category
      operationId: listBillersInCategory
      parameters:
      - in: path
        name: categoryId
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: Billers in the requested category.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Biller'
  /api/v2/quickteller/billers:
    get:
      tags:
      - Billers
      summary: List All Billers
      operationId: listBillers
      responses:
        '200':
          description: All billers.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Biller'
components:
  schemas:
    Biller:
      type: object
      properties:
        billerId:
          type: integer
        name:
          type: string
        categoryId:
          type: integer
        currencyCode:
          type: string
        customerField1:
          type: string
        customerField2:
          type: string
  securitySchemes:
    InterswitchAuth:
      type: apiKey
      in: header
      name: Authorization
      description: '`InterswitchAuth {base64(client_id)}` plus `Timestamp`, `Nonce`,

        `Signature` (SHA1 of method + endpoint + timestamp + nonce + client_id

        + secret), `SignatureMethod: SHA1`, and `TerminalID` headers; or

        `Bearer {access_token}` from the Passport OAuth token endpoint.

        '