> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.pay4power.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.pay4power.com/_mcp/server.

# Providers

GET https://p4p-core-bill-payments-service.dev.payinvert.com/api/v2.1/b2b/providers

Returns the available providers for the selected service category. In this request, the service is set to POWER, so the response lists supported electricity providers.

Reference: https://docs.pay4power.com/entry/providers

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: collection
  version: 1.0.0
paths:
  /providers:
    get:
      operationId: providers
      summary: Providers
      description: >-
        Returns the available providers for the selected service category. In
        this request, the service is set to POWER, so the response lists
        supported electricity providers.
      tags:
        - subpackage_entry
      parameters:
        - name: Authorization
          in: header
          description: Bearer authentication
          required: true
          schema:
            type: string
      responses:
        '200':
          description: TV
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  description: Any type
servers:
  - url: https://p4p-core-bill-payments-service.dev.payinvert.com/api/v2.1/b2b
    description: Default
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

```

## Examples

### AIRTIME

**Response**

```json
{
  "success": true,
  "message": "Successful",
  "errors": null,
  "statusCode": 200,
  "correlationId": "d8f92c4d-fbea-418e-abb9-0759fdc5d6dc",
  "data": [
    {
      "name": "MTN",
      "shortName": "MTN",
      "logo": "https://pay4power-uploads.s3.eu-west-1.amazonaws.com/Electricity/AEDC.png",
      "code": "MTN"
    },
    {
      "name": "GLO",
      "shortName": "GLO",
      "logo": "https://pay4power-uploads.s3.eu-west-1.amazonaws.com/Electricity/AEDC.png",
      "code": "GLO"
    },
    {
      "name": "9MOBILE",
      "shortName": "9MOBILE",
      "logo": "https://pay4power-uploads.s3.eu-west-1.amazonaws.com/Electricity/AEDC.png",
      "code": "9MOBILE"
    },
    {
      "name": "AIRTEL",
      "shortName": "AIRTEL",
      "logo": "https://pay4power-uploads.s3.eu-west-1.amazonaws.com/Electricity/AEDC.png",
      "code": "AIRTEL"
    }
  ]
}
```

### Example 2

**Response**

```json
{
  "string": {}
}
```

### Example 3

**Response**

```json
{
  "string": {}
}
```

### Example 4

**Response**

```json
{
  "string": {}
}
```