Canonical INCI Monograph #162
AQUA
No MoCRA Allergen Alert
Fungal Acne Safe
Purified water used as a primary solvent base in cosmetic formulations.
AQUA (declared on labels as Aqua (Water)) is catalogued in INCIDB under the CosIng functional class of Solvent, registered under CAS number 7732-18-5. Within the free INCIDB sample partition it is mapped to 5 indexed formulations spanning 3 product categories (Cleanser, Skincare, Toner), leading the ingredient declaration in Daytox Cleansing Foam. It carries a comedogenic rating of 0.0/5.0, indicating no expected pore-clogging activity.
CAS REGISTRY NUMBER
7732-18-5
COSING PRIMARY FUNCTION
Solvent
COMEDOGENIC RATING
0.0 / 5.0
COMMON SYNONYM
Aqua (Water)
Sample Commercial Formulations with AQUA
Verified concentration ranks from the free INCIDB sample partition. Full data mapping covers 19,645 commercial formulations.
Query AQUA via PyArrow Parquet
Filter sub-second high-performance columnar Parquet files across all 19,645 beauty formulations.
import pyarrow.parquet as pq
# Load normalized INCI ingredients dataset
ingredients = pq.read_table('ingredients.parquet').to_pandas()
# Locate exact compound ID and regulatory flags
target = ingredients[ingredients['inci_name'] == "AQUA"]
print(target[['ingredient_id', 'cas_number', 'is_common_allergen']])