Config Registry

Look up a config

Returns current global knowledge without resolving DNS, creating an analysis, or updating config registry data.

post/config-registry/lookup

Request body

allowed_proxy_countriesstring[]

ISO 3166 country codes Kernel may use when returning a proxy configuration. When omitted, Kernel uses its default country selection.

urlstring uri required

Public HTTP(S) URL to look up.

Example request

{
  "allowed_proxy_countries": [
    "US"
  ]
}

Response

Current recommendation, or a null recommendation when no eligible knowledge exists.

Example response

{
  "recommendation": {
    "browser": {
      "viewport": {
        "height": 800,
        "refresh_rate": 60,
        "width": 1280
      }
    },
    "proxy": {
      "create": {
        "config": {
          "country": "US"
        }
      }
    }
  }
}

Changes