# Server List

This gets all of your active servers under your management. It will return you the `server_id`, `server_ip` and `server_billing_status`.

### Use Case

It is recommended for you to keep your own record of the servers that belongs to you. However this endpoint is a convenient way to pull the latest record of all the servers that you own. If you have an admin dashboard that shows you a list of your servers, you should always pull data from your own database rather than relying on the external API call to us as a general rule of thumb.

### Example

<mark style="color:blue;">`GET`</mark> `https://zestystore.com/api/reseller/v1/servers`

{% tabs %}
{% tab title="200: OK " %}
{% code lineNumbers="true" %}

```json
{
   "server_id" : integer,
   "server_ip" : "string",
   "server_status" : "string"
}
```

{% endcode %}
{% endtab %}
{% endtabs %}

### Attribute

<table><thead><tr><th width="211.33333333333331">Attribute Name</th><th>Description</th></tr></thead><tbody><tr><td>server_id</td><td>Integer. The ID of the server for api calls.</td></tr><tr><td>server_ip</td><td>String. The IP of the server.</td></tr><tr><td>server_billing_status</td><td>String. Includes <code>active</code>, <code>unpaid</code>, <code>cancelling</code> and <code>expired</code>.</td></tr></tbody></table>
