过滤响应
您可以通过将字段或对象名称添加到 URL 来将 API 响应过滤到特定字段或对象。对于字段,您将以纯文本形式返回它,而对象将以 JSON 形式返回。
# Get json the org field as plaintext $ curl ipinfo.io/8.8.8.8/org?token=$TOKEN AS15169 Google Inc. # Get just the city as plaintext $ curl ipinfo.io/8.8.8.8/city?token=$TOKEN Mountain View # Get country ISO code as plaintext $ curl ipinfo.io/8.8.8.8/country?token=$TOKEN US