# Operator Plan Fetch API

This API allows you to fetch the plans for the mobile&#x20;

* To get a list of available operators, use the [Operator Lookup API.](/additional-ind-apis/operator-lookup.md)
* To find a list of available circle codes, refer to the [Circle Code API.](/additional-ind-apis/circle.md)

## Execute the Operator Plans

<mark style="color:green;">`POST`</mark> `https:services.exikart.in/api/v1/in/operator-plans`

**Headers**

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

**Body**

| Name          | Type   | Description                                                  |
| ------------- | ------ | ------------------------------------------------------------ |
| `operator_id` | number | The ID of the operator for the operator plans.               |
| `circle_id`   | number | The ID of the circle, can be obtained from Circle Lookup API |

**Response**

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

```json
{
  "type": "object",
  "properties": {
    "status": {
      "type": "boolean",
      "description": "The status of the plan fetch api is either true or false."
    },
    "message": {
      "type": "string",
      "description": "A message providing additional information about the recharge execution."
    },
     "data": {
      "type": "array of object",
      "description": "Plan object"
    }
  }
}
```

{% endtab %}

{% tab title="4XX/5XX" %}

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

{% endtab %}
{% endtabs %}


---

# 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/india-recharge/operator-plan-fetch-api.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.
