Chrome iOS 116.0.7879.70 on iOS

Engine: WebKit Platform: Mobile OS: iOS

Raw User Agent String

Mozilla/5.0 (iPhone; CPU iPhone OS 14_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/116.0.7879.70 Mobile/15E148 Safari/604.1

Metadata Analysis

Browser FamilyChrome iOS
Full Version116.0.7879.70
Operating SystemiOS
Rendering EngineWebKit

Understanding this User-Agent record

This record is a reproducible mobile Chrome iOS 116.0.7879.70 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.

Python
import requests

response = requests.get(
    "https://httpbin.org/headers",
    headers={"User-Agent": "Mozilla/5.0 (iPhone; CPU iPhone OS 14_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/116.0.7879.70 Mobile/15E148 Safari/604.1"},
)
print(response.status_code)