# Operator Lookup

This endpoint retrieves a list of utility operators available for customer

## List Of Operators

<mark style="color:green;">`GET`</mark> `/utility/operators`

**Headers**

| Name         | Value              |
| ------------ | ------------------ |
| Content-Type | `application/json` |
| Accept       | `application/json` |
| x-auth-token | `<token>`          |

**Body**

This is a `GET` request and does not need any body

**Response**

{% tabs %}
{% tab title="200" %}

```json
{
    "error": false,
    "message": "Success Message",
    "data": [
        {
            "value": 1,
            "label": "Name oF Operator"
        }
    ]
}
```

{% endtab %}

{% tab title="5XX" %}

```json
{
    "error": true,
    "message": "Description for the error",
}
```

{% endtab %}
{% endtabs %}

The response contains an error flag and a message, along with an array of utility operator data in case of success response, where each operator has a numerical value and a label.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.globaltopup.in/additional-nepal-apis/operator-lookup.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
