Valid
- Allow-Origin: https://example.com
- Allow-Methods: GET, POST
- Allow-Headers: Content-Type
- Allow-Credentials: true
web validator
Validate CORS response headers locally—origins, methods, headers, credentials, and max-age.
Access-Control-Allow-Origin is required.
Access-Control-Allow-Methods should list allowed verbs.
Access-Control-Allow-Credentials must be true/false; cannot combine '*' origin with credentials=true.
Access-Control-Max-Age must be numeric if present.
HTTP response headers
Paste raw headers (one per line) from your API/CDN. Keep sensitive values out; this runs locally.
This CORS validator checks Access-Control-Allow-* headers locally to catch wildcard/credentials conflicts and missing fields before browsers reject requests.
Use it to QA API/CDN headers pasted from DevTools or curl without sending them anywhere.
All validation happens in your browser. No data is sent, logged, or stored.
Header-level validation only; does not issue real CORS requests.