ToolAssay

Audit a URL's HTTP security headers over a single body-free (HEAD) request

Audit a URL's HTTP security headers over a single body-free (HEAD) request. Grades Strict-Transport-Security, Content-Security-Policy, X-Frame-Options, X-Content-Type-Options, Referrer-Policy and Permissions-Policy, flags information-leak headers (Server, X-Powered-By), and returns the parsed values plus advisory warnings. Clean JSON for security and pentest automation.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
624 msmedian answer time
$0.01listed price per call
$0.01price it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

GET https://headers.use.x402atlas.com/

CategoryCode and developer
Provider hostheaders.use.x402atlas.com
Networkseip155:137, eip155:42161, eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp
Payment schemesexact
Self-reported calls, 30 days23 from 9 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.01 624 ms

Example input (from the provider)

{
  "method": "GET",
  "queryParams": {
    "url": "https://example.com/"
  },
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "method": {
          "enum": [
            "GET"
          ],
          "type": "string"
        },
        "queryParams": {
          "properties": {
            "url": {
              "description": "Absolute http/https URL to audit. Host must be a hostname (not an IP literal), not \"localhost\", and not under a reserved suffix (.local, .internal, .localdomain, .lan, .test). Non-default ports must be allowlisted. Redirects are not followed.",
              "format": "uri",
              "type": "string"
            }
          },
          "required": [
            "url"
          ],
          "type": "object"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "example": {
          "properties": {
            "headers": {
              "description": "Graded, normalized security headers. Each field is null when the header is absent from the response",
              "properties": {
                "content_security_policy": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "permissions_policy": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "referrer_policy": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "server": {
                  "description": "Server header value, if disclosed by the target",
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "strict_transport_security": {
                  "properties": {
                    "include_subdomains": {
                      "type": "boolean"
                    },
                    "max_age": {
                      "description": "Parsed max-age in seconds; null if absent or unparseable",
                      "type": [
                        "integer",
                        "null"
                      ]
                    },
                    "preload": {
                      "type": "boolean"
                    },
                    "value": {
                      "description": "Raw Strict-Transport-Security header value",
                      "type": "string"
                    }
                  },
                  "type": [
                    "object",
                    "null"
                  ]
                },
                "x_content_type_options": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "x_frame_options": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "x_powered_by": {
                  "description": "X-Powered-By header value, if disclosed by the target",
                  "type": [
                    "string",
                    "null"
                  ]
                }
              },
              "type": "object"
            },
            "queried_at": {
              "description": "UTC timestamp the audit was performed",
              "format": "date-time",
              "type": "string"
            },
            "status_code": {
              "description": "HTTP status code returned by the target for the HEAD request",
              "type": "integer"
            },
            "url": {
              "description": "The audited URL, exactly as given",
              "type": "string"
            },
            "warnings": {
              "description": "Human-readable posture advisories, e.g. missing or weak headers",
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          "required": [
            "url",
            "status_code",
            "queried_at",
            "headers",
            "warnings"
          ],
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON