# Complete information

This request provides all the information you need to order proxies of any type.

This includes details such as country ID, periods, targets, carriers, rotations (for mobile proxies), and all the information required to place an order.

### **Endpoint**:

<mark style="color:green;">`GET`</mark> `https://proxy-seller.com/personal/api/v1/`**`{YourApiKey}`**`/reference/list/`**`{type}`**

#### **Example**

To view all proxy types:

```
https://proxy-seller.com/personal/api/v1/fj4948ffhg58gh843gh/reference/list
```

To view a specific proxy type (e.g., IPv4):

```
https://proxy-seller.com/personal/api/v1/fj4948ffhg58gh843gh/reference/list/ipv4
```

### **Response**

{% tabs %}
{% tab title="200: OK Success response " %}

```json
{
  "status": "success",
  "data": {
    "items": [
      {
        "country": [
          {
            "id": 561,
            "name": "France",
            "alpha3": "FRA"
          }
        ],
        "period": [
          {
            "id": "1m",
            "name": "1 month"
          }
        ]
      }
    ]
  },
  "errors": []
}
```

{% endtab %}

{% tab title="200: OK Error response" %}
**Wrong API key**

```json
{
    "status": "error",
    "data": null,
    "errors": [
        {
            "message": "Error api key",
            "code": 503,
            "customData": null
        },
        {
            "message": "IP not allowed",
            "code": 503,
            "customData": null
        },
        {
            "message": "Request limit reached",
            "code": 503,
            "customData": null
        }
    ]
}
```

{% endtab %}
{% endtabs %}

### Path parameters:

<table data-full-width="false"><thead><tr><th width="149">Name</th><th width="357">Value</th><th>Description</th><th data-hidden></th></tr></thead><tbody><tr><td>Authorization</td><td><code>&#x3C;Your_API_Key></code></td><td>Your personal API key (<a href="../../authorization#get-your-api-keys">how to get</a>)</td><td></td></tr><tr><td>Proxy type</td><td><p><code>ipv4</code></p><p><code>ipv6</code></p><p><code>mobile</code></p><p><code>isp</code></p><p><code>resident</code></p><p><code>mix</code></p><p><code>mix_isp</code></p></td><td>The proxy type you want to retrieve.</td><td></td></tr></tbody></table>
