---
title: "Get Operator Code and Circle API Reference"
description: "Auto-detect a mobile number's recharge operator code and telecom circle."
canonical: "https://eps.eko.in/docs/bbps-operator-code-circle"
---


> **Canonical URL:** https://eps.eko.in/docs/bbps-operator-code-circle
> This is a machine-readable Markdown version of the page for AI agents and LLMs. The primary (HTML) version lives at the canonical URL above.

# Get Operator Code and Circle API Reference

`GET https://staging.eko.in/ekoapi/v3/customer/payment/bbps/recharge/{customer_mobile}/operator`

Auto-detect a mobile number's recharge operator code and telecom circle.

Returns the `phone_operator_code` and `circle_area` for a customer mobile number — returned under `dependent_params`. Pass these into Get Recharge Plans.

> View product & pricing details: [Bharat Bill Payment System (BBPS)](https://eps.eko.in/products/bbps-api.md)

## Path parameters

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| customer_mobile | string | yes | Customer's mobile number. e.g. 9876543210 |

## Query parameters

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| initiator_id | string | yes | Registered mobile number of the API user (see Platform Credentials). e.g. 9962981729 |
| user_code | string | yes | User code of the retailer/agent the service is run for. e.g. 20810200 |

## Headers

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| developer_key | string | yes | Static API key issued to your account after KYC. |
| secret-key | string | yes | Dynamic per-request signature: base64(HMAC-SHA256(timestamp, base64(access_key))). |
| secret-key-timestamp | string | yes | Current time in milliseconds since UNIX epoch, used to compute secret-key. Must match server time. |
| content-type | string | yes | application/json e.g. application/json |

## Response

⭐ marks fields highlighted as verifiable.

| Field | Type | Description |
| --- | --- | --- |
| status | number | Primary success indicator (0 = success). |
| message | string | Human-readable response / error message. |
| response_status_id | number | Granular status id; see the shared error-codes table. |
| response_type_id | number | A unique id for every possible response shape (success or error) — useful for client logic branching and analytics. |
| data | object | API-specific response payload. |
| data.dependent_params ⭐ | array | Resolved operator/circle as name-value pairs (phone_operator_code, circle_area) — returned at the top level, not under data. |
| data.dependent_params.name | string | Parameter name (phone_operator_code or circle_area). |
| data.dependent_params.value | string | Parameter value. |

## Example response

```json
{
  "response_status_id": 0,
  "dependent_params": [
    {
      "name": "phone_operator_code",
      "value": 400
    },
    {
      "name": "circle_area",
      "value": "5"
    }
  ],
  "data": {
    "updates": ""
  },
  "response_type_id": 1804,
  "message": "success",
  "status": 0
}
```
