University of California, Los Angeles Weather API

The Weather API from University of California, Los Angeles — 14 operation(s) for weather.

Operations 14

GET /weather/api Returns current UCLA weather information with a valid APP apiKey send in as header parameter.
GET /weather/windSpeed Average wind speed during the previous 60 seconds in miles per hour.
GET /weather/gust Maximum wind speed during the previous 60 seconds in miles per hour.
GET /weather/airTemperature Current air temperature in degrees Fahrenheit.
GET /weather/minimumTemperature Minimum temperature since midnight PST in degrees Fahrenheit.
GET /weather/maximumTemperature Maximum temperature since midnight PST in degrees Fahrenheit.
GET /weather/relativeHumidity Current relative humidity in percent.
GET /weather/minRelativeHumidity Minimum relative humidity since midnight PST in percent.
GET /weather/maxRelativeHumidity Maximum relative humidity since midnight PST in percent.
GET /weather/dewPoint Current dew point temperature in degrees Fahrenheit.
GET /weather/wetBulb Current wet bulb temperature in degrees Fahrenheit.
GET /weather/seaLevelPressure Equivalent sea level pressure in millibars.
GET /weather/rainFallHour Rainfall in previous 60 minutes.
GET /weather/rainFallDay Rainfall since midnight PST.

Documentation

Specifications

Schemas & Data

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/ucla-weather-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

ucla-weather-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 0.0.1
  title: UCLA Weather API
  description: UCLA Weather https://weather.atmos.ucla.edu/
servers:
- url: https://api.ucla.edu/
- url: https://qa.api.ucla.edu/
security:
- ApiKeyAuth: []
tags:
- name: Weather
paths:
  /weather/api:
    get:
      summary: Returns current UCLA weather information with a valid APP apiKey send in as header parameter.
      description: Returns current UCLA weather information with a valid APP apiKey send in as header parameter.
      parameters:
      - name: param
        description: windDirection or windSpeed or gust or airTemperature or minimumTemperature or maximumTemperature or relativeHumidity or minRelativeHumidity or maxRelativeHumidity or dewPoint or wetBulb or seaLevelPressure or rainFallHour or rainFallDay
        in: query
        required: false
        schema:
          type: string
      responses:
        '200':
          description: Current UCLA Weather data returned in JSON format
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FullList'
      tags:
      - Weather
  /weather/windSpeed:
    get:
      summary: Average wind speed during the previous 60 seconds in miles per hour.
      responses:
        '200':
          description: Average wind speed during the previous 60 seconds in miles per hour.
          content:
            text/plain:
              schema:
                type: string
      tags:
      - Weather
  /weather/gust:
    get:
      summary: Maximum wind speed during the previous 60 seconds in miles per hour.
      responses:
        '200':
          description: Maximum wind speed during the previous 60 seconds in miles per hour.
          content:
            text/plain:
              schema:
                type: string
      tags:
      - Weather
  /weather/airTemperature:
    get:
      summary: Current air temperature in degrees Fahrenheit.
      responses:
        '200':
          description: Current air temperature in degrees Fahrenheit.
          content:
            text/plain:
              schema:
                type: string
      tags:
      - Weather
  /weather/minimumTemperature:
    get:
      summary: Minimum temperature since midnight PST in degrees Fahrenheit.
      responses:
        '200':
          description: Minimum temperature since midnight PST in degrees Fahrenheit.
          content:
            text/plain:
              schema:
                type: string
      tags:
      - Weather
  /weather/maximumTemperature:
    get:
      summary: Maximum temperature since midnight PST in degrees Fahrenheit.
      responses:
        '200':
          description: Maximum temperature since midnight PST in degrees Fahrenheit.
          content:
            text/plain:
              schema:
                type: string
      tags:
      - Weather
  /weather/relativeHumidity:
    get:
      summary: Current relative humidity in percent.
      responses:
        '200':
          description: Current relative humidity in percent.
          content:
            text/plain:
              schema:
                type: string
      tags:
      - Weather
  /weather/minRelativeHumidity:
    get:
      summary: Minimum relative humidity since midnight PST in percent.
      responses:
        '200':
          description: Minimum relative humidity since midnight PST in percent.
          content:
            text/plain:
              schema:
                type: string
      tags:
      - Weather
  /weather/maxRelativeHumidity:
    get:
      summary: Maximum relative humidity since midnight PST in percent.
      responses:
        '200':
          description: Maximum relative humidity since midnight PST in percent.
          content:
            text/plain:
              schema:
                type: string
      tags:
      - Weather
  /weather/dewPoint:
    get:
      summary: Current dew point temperature in degrees Fahrenheit.
      responses:
        '200':
          description: Current dew point temperature in degrees Fahrenheit.
          content:
            text/plain:
              schema:
                type: string
      tags:
      - Weather
  /weather/wetBulb:
    get:
      summary: Current wet bulb temperature in degrees Fahrenheit.
      responses:
        '200':
          description: Current wet bulb temperature in degrees Fahrenheit.
          content:
            text/plain:
              schema:
                type: string
      tags:
      - Weather
  /weather/seaLevelPressure:
    get:
      summary: Equivalent sea level pressure in millibars.
      responses:
        '200':
          description: Equivalent sea level pressure in millibars.
          content:
            text/plain:
              schema:
                type: string
      tags:
      - Weather
  /weather/rainFallHour:
    get:
      summary: Rainfall in previous 60 minutes.
      responses:
        '200':
          description: Rainfall in previous 60 minutes.
          content:
            text/plain:
              schema:
                type: string
      tags:
      - Weather
  /weather/rainFallDay:
    get:
      summary: Rainfall since midnight PST.
      responses:
        '200':
          description: Rainfall since midnight PST.
          content:
            text/plain:
              schema:
                type: string
      tags:
      - Weather
components:
  schemas:
    FullList:
      type: object
      properties:
        year:
          type: integer
          description: Current four digit year.
          example: 2020
        month:
          type: string
          description: Current month.
          example: 08
        day:
          type: integer
          description: Current day of the month.
          example: 18
        hour:
          type: integer
          description: Current hour of the day.
          example: 11
        minutes:
          type: integer
          description: Current minute of the hour.
          example: 37
        wind_direction:
          type: integer
          description: Average direction from which wind blows during the previous 60 seconds in degrees from due North.
          example: 171
        wind_speed:
          type: string
          description: Average wind speed during the previous 60 seconds in miles per hour.
          example: 7
        gust:
          type: string
          description: Maximum wind speed during the previous 60 seconds in miles per hour.
          example: 008
        air_temp:
          type: string
          description: Current air temperature in degrees Fahrenheit.
          example: 086
        min_temp:
          type: string
          description: Minimum temperature since midnight PST in degrees Fahrenheit.
          example: 56
        max_temp:
          type: string
          description: Maximum temperature since midnight PST in degrees Fahrenheit.
          example: 092
        relative_humid:
          type: string
          description: Current relative humidity in percent.
          example: 048
        min_rel_humid:
          type: string
          description: Minimum relative humidity since midnight PST in percent.
          example: 35
        max_rel_humid:
          type: string
          description: Maximum relative humidity since midnight PST in percent.
          example: 078
        dew_point:
          type: string
          description: Current dew point temperature in degrees Fahrenheit.
          example: 53
        wet_bulb:
          type: string
          description: Current wet bulb temperature in degrees Fahrenheit.
          example: 57
        sea_level_pressure:
          type: string
          description: Equivalent sea level pressure in millibars.
          example: 1011.1
        rainfall_hour:
          type: string
          description: Rainfall in previous 60 minutes.
          example: 0.0
        rainfall_day:
          type: string
          description: Rainfall since midnight PST.
          example: 0.0
        datetime:
          type: string
          description: Date and time of data publication.
          example: '2020-08-17 07:35:10'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-apikey