國家/地區

獲取地區列表

curl --location --request GET 'http://192.168.0.100:8042/api/region/getList?pid=75' \
--header 'User-Agent: Apifox/1.0.0 (https://apifox.com)'
import requests

url = "http://192.168.0.100:8042/api/region/getList?pid=75"

payload={}
headers = {
   'User-Agent': 'Apifox/1.0.0 (https://apifox.com)'
}

response = requests.request("GET", url, headers=headers, data=payload)

print(response.text)
<?php

$curl = curl_init();

curl_setopt_array($curl, array(
   CURLOPT_URL => 'http://192.168.0.100:8042/api/region/getList?pid=75',
   CURLOPT_RETURNTRANSFER => true,
   CURLOPT_ENCODING => '',
   CURLOPT_MAXREDIRS => 10,
   CURLOPT_TIMEOUT => 0,
   CURLOPT_FOLLOWLOCATION => true,
   CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
   CURLOPT_CUSTOMREQUEST => 'GET',
   CURLOPT_HTTPHEADER => array(
      'User-Agent: Apifox/1.0.0 (https://apifox.com)'
   ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
var myHeaders = new Headers();
myHeaders.append("User-Agent", "Apifox/1.0.0 (https://apifox.com)");

var requestOptions = {
   method: 'GET',
   headers: myHeaders,
   redirect: 'follow'
};

fetch("http://192.168.0.100:8042/api/region/getList?pid=75", requestOptions)
   .then(response => response.text())
   .then(result => console.log(result))
   .catch(error => console.log('error', error));
package main

import (
   "fmt"
   "net/http"
   "io/ioutil"
)

func main() {

   url := "http://192.168.0.100:8042/api/region/getList?pid=75"
   method := "GET"

   client := &http.Client {
   }
   req, err := http.NewRequest(method, url, nil)

   if err != nil {
      fmt.Println(err)
      return
   }
   req.Header.Add("User-Agent", "Apifox/1.0.0 (https://apifox.com)")

   res, err := client.Do(req)
   if err != nil {
      fmt.Println(err)
      return
   }
   defer res.Body.Close()

   body, err := ioutil.ReadAll(res.Body)
   if err != nil {
      fmt.Println(err)
      return
   }
   fmt.Println(string(body))
}
OkHttpClient client = new OkHttpClient().newBuilder()
   .build();
MediaType mediaType = MediaType.parse("text/plain");
RequestBody body = RequestBody.create(mediaType, "");
Request request = new Request.Builder()
   .url("http://192.168.0.100:8042/api/region/getList?pid=75")
   .method("GET", body)
   .addHeader("User-Agent", "Apifox/1.0.0 (https://apifox.com)")
   .build();
Response response = client.newCall(request).execute();

GET /region/getList

請求參數

名稱 類型 必選 說明
pid int 與region二選一 國家ID
region string 與pid二選一 國家編碼
                                    https://api.98ip.com/region/getList?pid=75
https://api.98ip.com/region/getList?region=US

                                

相應結果

名稱 類型 說明
code int 響應代碼
msg string 響應消息
data list 地區列表
                                        {
    "code": 0,
    "msg": "success",
    "data": [
        {
            "code": "Alabama",
            "id": 1713,
            "name": "Alabama"
        },
        {
            "code": "Alaska",
            "id": 1714,
            "name": "Alaska"
        },
        ......
    ]
}

                                    
                                        {
  "code": 1,
  "msg": "<string>"
}
                                    
curl --location --request GET 'http://192.168.0.100:8042/api/region/getList?pid=75' \
--header 'User-Agent: Apifox/1.0.0 (https://apifox.com)'
import requests

url = "http://192.168.0.100:8042/api/region/getList?pid=75"

payload={}
headers = {
   'User-Agent': 'Apifox/1.0.0 (https://apifox.com)'
}

response = requests.request("GET", url, headers=headers, data=payload)

print(response.text)
<?php

$curl = curl_init();

curl_setopt_array($curl, array(
   CURLOPT_URL => 'http://192.168.0.100:8042/api/region/getList?pid=75',
   CURLOPT_RETURNTRANSFER => true,
   CURLOPT_ENCODING => '',
   CURLOPT_MAXREDIRS => 10,
   CURLOPT_TIMEOUT => 0,
   CURLOPT_FOLLOWLOCATION => true,
   CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
   CURLOPT_CUSTOMREQUEST => 'GET',
   CURLOPT_HTTPHEADER => array(
      'User-Agent: Apifox/1.0.0 (https://apifox.com)'
   ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
var myHeaders = new Headers();
myHeaders.append("User-Agent", "Apifox/1.0.0 (https://apifox.com)");

var requestOptions = {
   method: 'GET',
   headers: myHeaders,
   redirect: 'follow'
};

fetch("http://192.168.0.100:8042/api/region/getList?pid=75", requestOptions)
   .then(response => response.text())
   .then(result => console.log(result))
   .catch(error => console.log('error', error));
package main

import (
   "fmt"
   "net/http"
   "io/ioutil"
)

func main() {

   url := "http://192.168.0.100:8042/api/region/getList?pid=75"
   method := "GET"

   client := &http.Client {
   }
   req, err := http.NewRequest(method, url, nil)

   if err != nil {
      fmt.Println(err)
      return
   }
   req.Header.Add("User-Agent", "Apifox/1.0.0 (https://apifox.com)")

   res, err := client.Do(req)
   if err != nil {
      fmt.Println(err)
      return
   }
   defer res.Body.Close()

   body, err := ioutil.ReadAll(res.Body)
   if err != nil {
      fmt.Println(err)
      return
   }
   fmt.Println(string(body))
}
OkHttpClient client = new OkHttpClient().newBuilder()
   .build();
MediaType mediaType = MediaType.parse("text/plain");
RequestBody body = RequestBody.create(mediaType, "");
Request request = new Request.Builder()
   .url("http://192.168.0.100:8042/api/region/getList?pid=75")
   .method("GET", body)
   .addHeader("User-Agent", "Apifox/1.0.0 (https://apifox.com)")
   .build();
Response response = client.newCall(request).execute();