Endpoint
Authentication
This endpoint requires authentication. Include your API key in theX-API-Key header.
See Authentication for details.
Request Parameters
This endpoint accepts no request parameters. It’s a simple GET request.Response Fields
Indicates if the request was successful.
Contains detailed model information.
Current model version identifier.
Type of machine learning model (e.g., “gradient_boosted_ensemble”).
ISO 8601 timestamp when this model version was deployed.
Input features and their importance.
Valid input ranges for each parameter.
List of model capabilities and features.
ISO 8601 timestamp of the response.
Example Request
Example Response
200 Success
Understanding Model Information
Model Version
The model version follows semantic versioning (MAJOR.MINOR.PATCH):- MAJOR: Breaking changes to API or model architecture
- MINOR: New features or significant retraining
- PATCH: Bug fixes and minor improvements
Check the model version periodically to ensure you’re aware of updates that might affect your predictions.
Performance Metrics
Mean Absolute Error (MAE)
Mean Absolute Error (MAE)
Average absolute difference between predicted and actual AQI values.
- Current: 4.82 AQI points
- Interpretation: On average, predictions are within ±5 AQI points
- Lower is better
Root Mean Square Error (RMSE)
Root Mean Square Error (RMSE)
Standard deviation of prediction errors, giving more weight to large errors.
- Current: 7.34 AQI points
- Interpretation: Typical prediction variation is around 7 points
- Lower is better
R² Score
R² Score
Coefficient of determination, indicating how well the model explains variance.
- Current: 0.9347 (93.47%)
- Range: 0 to 1
- Interpretation: Model explains 93.47% of AQI variance
- Higher is better (1.0 is perfect)
Feature Importance
Feature importance values indicate how much each input parameter contributes to predictions:| Feature | Importance | Interpretation |
|---|---|---|
| PM2.5 | 34.2% | Most critical pollutant for AQI |
| O3 | 21.8% | Secondary air quality indicator |
| PM10 | 17.6% | Important particulate measure |
| NO2 | 12.4% | Significant urban pollutant |
| CO | 6.7% | Moderate influence |
| Temperature | 3.8% | Indirect effect on pollutant behavior |
| Humidity | 3.5% | Minor environmental factor |
Geographic Coverage
The model is trained on data from multiple regions:- North America: 1,245 stations across US, Canada, Mexico
- Europe: 2,187 stations covering EU and UK
- East Asia: 1,432 stations in China, Japan, Korea
- Southeast Asia: 389 stations in major cities
- Australia: 179 stations across major regions
Predictions are most accurate for locations similar to those in the training data. Remote or polar regions may have reduced accuracy.
Model Capabilities
Real-time Prediction
Optimized for low-latency predictions (< 100ms average response time).Batch Processing
Efficiently handles large batch requests with parallel processing.Confidence Scoring
Provides confidence metrics for each prediction to assess reliability.Pollutant Breakdown
Calculates individual AQI contributions from each pollutant.Seasonal Adjustment
Accounts for seasonal patterns in air quality (winter inversions, summer ozone, etc.).Urban-Rural Differentiation
Adapts predictions based on location characteristics when location data is provided.Model Updates
Update Schedule
The model is retrained monthly with new data:- Frequency: Monthly incremental training
- Next Update: April 1, 2026
- Update Type: Incremental (preserves existing knowledge)
Changelog
Version 2.4.1 (Current)
Version 2.4.1 (Current)
Released: February 15, 2026Improvements:
- Enhanced accuracy for high-humidity conditions (+8% improvement)
- Added 423,000 new training samples from January 2026
- Improved confidence scoring algorithm
- Fixed edge case with negative temperature predictions
- MAE: 4.82 (improved from 5.21)
- R² Score: 0.9347 (improved from 0.9289)
Version 2.4.0
Version 2.4.0
Released: January 12, 2026New Features:
- Added support for wind speed parameter
- Improved seasonal adjustment algorithm
- Enhanced urban-rural differentiation
- MAE: 5.21
- R² Score: 0.9289
Version 2.3.5
Version 2.3.5
Released: December 1, 2025Improvements:
- Expanded training data to 2.4M+ samples
- Added 312 new monitoring stations
- Improved handling of extreme weather conditions
- MAE: 5.67
- R² Score: 0.9201
Using Model Information
Version Tracking
Feature Validation
Performance Monitoring
Best Practices
Leverage model information to optimize your integration and improve prediction quality.
Cache Model Information
- Cache model info for 24 hours to reduce API calls
- Refresh when you detect a version change
- Store feature importance for input validation
Monitor Model Updates
- Check for updates weekly or before critical operations
- Review changelogs to understand improvements
- Test your integration after major version updates
Optimize Input Quality
- Prioritize accuracy for high-importance features (PM2.5, O3)
- Validate inputs against supported ranges
- Include optional parameters (location, timestamp) for better accuracy
Understand Limitations
- Be aware of geographic coverage gaps
- Account for reduced accuracy in extreme conditions
- Monitor confidence scores and flag low-confidence predictions