# @maxim_mazurok/gapi.client.airquality-v1

> TypeScript typings for Air Quality API v1

Latest version **0.3.20260915** (published 2026-09-16) · MIT license · 0 weekly downloads

## Install

```sh
npm install @maxim_mazurok/gapi.client.airquality-v1
pnpm add @maxim_mazurok/gapi.client.airquality-v1
yarn add @maxim_mazurok/gapi.client.airquality-v1
bun add @maxim_mazurok/gapi.client.airquality-v1
```

## Health

**Score 65/100 (B)** — status: active.

Positive: has types; no vulnerabilities; has provenance; recently updated; high maintenance score.

Warnings: low downloads; no esm support; pre 1.0.

## Facts

| | |
|---|---|
| Version | 0.3.20260915 |
| Published | 2026-09-16 |
| First published | 2024-06-10 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 33.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Provenance | attested (GitHub Actions) |
| GitHub stars | 59 |
| Author | Maxim Mazurok |
| Maintainers | maxim_mazurok |

## Links

- npm: https://www.npmjs.com/package/@maxim_mazurok/gapi.client.airquality-v1
- Repository: https://github.com/Maxim-Mazurok/google-api-typings-generator
- Homepage: https://github.com/Maxim-Mazurok/google-api-typings-generator#readme
- Issues: https://github.com/Maxim-Mazurok/google-api-typings-generator/issues
- npm.io page: https://npm.io/package/@maxim_mazurok/gapi.client.airquality-v1

## Dependencies (2)

- [@types/gapi.client](https://npm.io/package/@types/gapi.client.md) *
- [@types/gapi.client.discovery-v1](https://npm.io/package/@types/gapi.client.discovery-v1.md) *

## Recent versions

- 0.3.20260915 (latest) — 2026-09-16
- 0.3.20260914 — 2026-09-15
- 0.3.20260913 — 2026-09-14
- 0.3.20260909 — 2026-09-10
- 0.3.20260908 — 2026-09-09
- 0.3.20260907 — 2026-09-08
- 0.3.20260906 — 2026-09-07
- 0.3.20260902 — 2026-09-03
- 0.3.20260901 — 2026-09-02
- 0.3.20260831 — 2026-09-01
- 0.3.20260830 — 2026-08-31
- 0.3.20260826 — 2026-08-27
- 0.3.20260825 — 2026-08-26
- 0.3.20260824 — 2026-08-25
- 0.3.20260823 — 2026-08-24
- … 353 more at https://npm.io/package/@maxim_mazurok/gapi.client.airquality-v1/versions

## README

# TypeScript typings for Air Quality API v1

The Air Quality API.
For detailed description please check [documentation](https://developers.google.com/maps/documentation/air-quality).

## Installing

Install typings for Air Quality API:

```
npm install @types/gapi.client.airquality-v1 --save-dev
```

## TypeScript 6.0+

TypeScript 6.0 changed `types` to default to `[]`. You must now explicitly list type packages in `tsconfig.json`:

```json
{
  "compilerOptions": {
    "types": ["gapi", "gapi.auth2", "gapi.client", "gapi.client.airquality-v1"]
  }
}
```

## Usage

You need to initialize Google API client in your code:

```typescript
gapi.load('client', () => {
  // now we can use gapi.client
  // ...
});
```

Then load api client wrapper:

```typescript
gapi.client.load(
  'https://airquality.googleapis.com/$discovery/rest?version=v1',
  () => {
    // now we can use:
    // gapi.client.airquality
  },
);
```

```typescript
// Deprecated, use discovery document URL, see https://github.com/google/google-api-javascript-client/blob/master/docs/reference.md#----gapiclientloadname----version----callback--
gapi.client.load('airquality', 'v1', () => {
  // now we can use:
  // gapi.client.airquality
});
```

Don't forget to authenticate your client before sending any request to resources:

```typescript
// declare client_id registered in Google Developers Console
var client_id = '',
  scope = [
    // See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
    'https://www.googleapis.com/auth/cloud-platform',
  ],
  immediate = true;
// ...

gapi.auth.authorize(
  {client_id: client_id, scope: scope, immediate: immediate},
  authResult => {
    if (authResult && !authResult.error) {
      /* handle successful authorization */
    } else {
      /* handle authorization error */
    }
  },
);
```

After that you can use Air Quality API resources: <!-- TODO: make this work for multiple namespaces -->

```typescript
/*
The Current Conditions endpoint provides hourly air quality information in more than 100 countries, up to a 500 x 500 meters resolution. Includes over 70 local indexes and global air quality index and categories.
*/
await gapi.client.airquality.currentConditions.lookup({});

/*
Returns air quality forecast for a specific location for a given time range.
*/
await gapi.client.airquality.forecast.lookup({});

/*
Returns air quality history for a specific location for a given time range.
*/
await gapi.client.airquality.history.lookup({});
```

For provenance information see [Provenance section on NPM](https://www.npmjs.com/package/@maxim_mazurok/gapi.client.airquality-v1#Provenance:~:text=none-,Provenance,-Built%20and%20signed)

---
_Source: https://npm.io/package/@maxim_mazurok/gapi.client.airquality-v1 · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
