openapi: 3.0.3 info: title: EPA Air Quality System (AQS) Account Type Codes How's My Waterway API description: 'The Air Quality System (AQS) Data Mart API provides programmatic access to ambient air sample data collected by state, local, tribal and federal air pollution control agencies from thousands of monitors across the United States. The API exposes monitor metadata, raw sample observations, daily/quarterly/annual aggregates, and quality assurance results. ' version: '1.0' contact: name: AQS Data Mart Support email: aqsdatamart@epa.gov url: https://aqs.epa.gov/aqsweb/documents/data_api.html license: name: U.S. Government Work / Public Domain url: https://www.usa.gov/government-works servers: - url: https://aqs.epa.gov/data/api description: Production AQS Data Mart API security: - emailKey: [] tags: - name: How's My Waterway paths: /api/configFiles: get: tags: - How's My Waterway responses: '200': description: Placeholder. content: application/json: schema: $ref: '#/components/schemas/generic' examples: get_api_configFiles200Example: summary: Default get_api_configFiles 200 response x-microcks-default: true value: status: ok message: Example response x-microcks-operation: delay: 0 dispatcher: FALLBACK /api/health: get: tags: - How's My Waterway responses: '200': description: Placeholder. content: application/json: schema: $ref: '#/components/schemas/generic' examples: get_api_health200Example: summary: Default get_api_health 200 response x-microcks-default: true value: status: ok message: Example response x-microcks-operation: delay: 0 dispatcher: FALLBACK /api/supportedBrowsers: get: tags: - How's My Waterway responses: '200': description: Placeholder. content: application/json: schema: $ref: '#/components/schemas/generic' examples: get_api_supportedBrowsers200Example: summary: Default get_api_supportedBrowsers 200 response x-microcks-default: true value: status: ok message: Example response x-microcks-operation: delay: 0 dispatcher: FALLBACK components: schemas: generic: type: object properties: Results: type: string example: string securitySchemes: emailKey: type: apiKey in: query name: key description: 'AQS requires `email` and `key` query parameters on every request. Register at `/signup?email=YOUR_EMAIL` to receive a key by email. '