Chrome iOS 126.0.6584.66 on iOS
Raw User Agent String
Mozilla/5.0 (iPhone; CPU iPhone OS 12_5_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/126.0.6584.66 Mobile/15E148 Safari/604.1
Metadata Analysis
Understanding this User-Agent record
This record is a reproducible mobile Chrome iOS 126.0.6584.66 sample on iOS. Use the raw value with the normalized fields when comparing a current request; embedded browsers and modified clients may behave differently.
How to validate this User-Agent
User-Agent values can be reduced, overridden, or supplemented by Client Hints, so validate the real journey in its actual browser context. Never use a client-supplied User-Agent alone for authentication or authorization.
Read more about Client Hints and responsible UA parsing.
Developer Integration
Use this code as a controlled request fixture. Do not use a client-supplied User-Agent for authentication or authorization.
import requests
response = requests.get(
"https://httpbin.org/headers",
headers={"User-Agent": "Mozilla/5.0 (iPhone; CPU iPhone OS 12_5_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/126.0.6584.66 Mobile/15E148 Safari/604.1"},
)
print(response.status_code)