> ## Documentation Index
> Fetch the complete documentation index at: https://docs.go2proxy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# ISP Proxy Acquire

> Introduction to the Acquire ISP Proxy API Interface

* API interface address：[https://api.go2proxy.com/v1/static/proxies](https://api.go2proxy.com/v1/static/proxies)

* Request Method：GET

* QPS Limit：Each order can be accessed once per second

## 1.Parameters

| Parameter | required | Type     | Description                                                                                                                                                                                                     |
| :-------- | :------- | :------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| app\_id   | required | `string` | API Access Credentials: AppID                                                                                                                                                                                   |
| signature | required | `string` | API Access Credentials: AppSecret                                                                                                                                                                               |
| orderid   | required | `string` | Order Number                                                                                                                                                                                                    |
| ft        | optional | `string` | Return Format, default is json <br />Options:json,text,xml                                                                                                                                                      |
| delimiter | optional | `string` | Delimiter, required when ft=text <br />Options:\r\n,\n,space,\|<br />or custom "custom\_t" where t is a custom value                                                                                            |
| display   | optional | `string` | Return Result: By default, returns proxy:port<br />display=ip\_port\_user\_pass,returns proxy,port,username,and password<br />display=ip\_port\_user\_pass\_loc,returns proxy,port,username,password,and region |

## 2.Return Parameter Description

| Parameter | Type        | Description                                                                                                           |
| :-------- | :---------- | :-------------------------------------------------------------------------------------------------------------------- |
| code      | `int`       | Request Business Status<br />A value of 0 signifies success <br />any value other than 0 indicates a business failure |
| msg       | `string`    | Request Business Description                                                                                          |
| data      | `"" or map` | Empty string if the request business fails                                                                            |

## 3.Response description

ft values and corresponding return examples

<CodeGroup>
  ```python text theme={null}
  #Response Header:Content-type:text/plain;charset=UTF-8
  38.182.98.234:32791:3A9WA38132791:SrFhopr9aYpK 154.64.154.151:30003:3A6415420003:PMSvru7IkFMy

  ```

  ```python json theme={null}
  #Response Header:Content-type: application/json
  {
    "code": 0,
    "msg": "Success",
    "data": [
      {
        "ip": "38.182.98.204",
        "port": "32791",
        "username": "3A9WA3818298204A32791",
        "password": "SrFhopr9aYpK"
      }
    ]
  }
  ```

  ```python xml theme={null}
  #Response Header:Content-type: application/xml; charset=UTF-8
  <response>
  <code>0</code>
  <msg>success</msg>
  <data>
  <proxy>
  <ip>38.182.98.204</ip>
  <port>32791</port>
  <username>3A9WA3818298204A32791</username>
  <password>SrFhopr9aYpK</password>
  </proxy>
  <proxy>
  <ip>154.64.154.251</ip>
  <port>30003</port>
  <username>3A9XA15464154251A30003</username>
  <password>PMSvru7IkFMy</password>
  </proxy>
  </data>
  </response>

  ```
</CodeGroup>
