Config Registry

List configs

Lists unique domains previously analyzed by the selected project with their current domain-level recommendations.

get/config-registry

Query parameters

limitinteger
offsetinteger
searchstring

Case-insensitive domain search. Full URLs are reduced to their registrable domain.

sort_by'target' | 'analysis_status' | 'recommended_config' | 'last_requested_at' | 'success_rate'
sort_order'asc' | 'desc'

Response

Project-scoped recommended configurations.

analysis_idstring required

ID of the most recently requested analysis for this domain.

analysis_status'running' | 'completed' | 'failed' | 'canceled' required

Lifecycle status of a background analysis.

last_requested_atstring date-time required

Most recent time the selected project requested an analysis for this domain.

recommended_config_labelstring nullable required

Display label for the recommended browser configuration.

success_ratenumber nullable required

Success rate for the recommended configuration. Null when no eligible knowledge exists.

targetstring required

Registrable domain previously analyzed by the selected project.

Example response

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

Changes