Skip to main content
GET
/
validity
Check validity of a route (query parameters)
curl --request GET \
  --url https://api.hixbe.com/rpki/validity
{
  "validated_route": {
    "route": {
      "origin_asn": "AS64496",
      "prefix": "192.0.2.0/24"
    },
    "validity": {
      "state": "valid",
      "reason": "<string>",
      "description": "<string>"
    },
    "vrps": {
      "matched": [
        {
          "asn": "AS64496",
          "prefix": "192.0.2.0/24",
          "max_length": 24
        }
      ],
      "unmatched_as": [
        {
          "asn": "AS64496",
          "prefix": "192.0.2.0/24",
          "max_length": 24
        }
      ],
      "unmatched_length": [
        {
          "asn": "AS64496",
          "prefix": "192.0.2.0/24",
          "max_length": 24
        }
      ]
    }
  }
}
Returns RPKI validation status for a route using query parameters. More form-friendly than the path-based endpoint. Use Cases:
  • Web form-based validation
  • Simple API integrations
  • Quick validation checks
  • Browser-based tools

Query Parameters

asn
string
required

Autonomous System Number

Pattern: ^(AS)?[0-9]+$
Example:

"AS64496"

prefix
string
required

IP prefix in CIDR notation

Example:

"192.0.2.0/24"

Response

Successful response with validity information

validated_route
object
required