University of California, Los Angeles GE Foundations API

The GE Foundations API from University of California, Los Angeles — 2 operation(s) for ge foundations.

Operations 2

GET /gefoundations/v1 Returns a collection of GE Foundations #
GET /gefoundations/{GEFoundationCode}/{GEFoundationCategoryCode}/gefoundationcategorycourses/v1 #

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-ge-foundations-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-ge-foundations-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: v1
  title: version v1 GE Foundations API
servers:
- url: https://api.ucla.edu/sis
security:
- application: []
tags:
- name: GE Foundations
paths:
  /gefoundations/v1:
    get:
      tags:
      - GE Foundations
      summary: Returns a collection of GE Foundations
      operationId: GEFoundations_GetGEFoundations
      parameters:
      - name: GEFoundationCode
        in: query
        description: SI
        required: false
        schema:
          type: string
      - name: GEFoundationName
        in: query
        description: FOUNDATIONS OF SCIENTIFIC INQUIRY
        required: false
        schema:
          type: string
      - name: GEFoundationCategoryCode
        in: query
        description: LS
        required: false
        schema:
          type: string
      - name: GEFoundationCategoryName
        in: query
        description: LIFE SCIENCES
        required: false
        schema:
          type: string
      - name: PageNumber
        in: query
        description: '1'
        required: false
        schema:
          type: integer
          format: int32
      - name: PageSize
        in: query
        description: '10'
        required: false
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: Record(s) found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GEFoundationsCollection'
            text/json:
              schema:
                $ref: '#/components/schemas/GEFoundationsCollection'
        ' 200':
          description: Record(s) found
        ' 400':
          description: Bad Request
        ' 401':
          description: Unauthorized
        ' 403':
          description: Forbidden
        ' 404':
          description: No Record Found
        ' 500':
          description: Server Error
      deprecated: false
  /gefoundations/{GEFoundationCode}/{GEFoundationCategoryCode}/gefoundationcategorycourses/v1:
    get:
      tags:
      - GE Foundations
      summary: ''
      operationId: GEFoundationCategoryCourses_GetGEFoundationCategoryCourses
      parameters:
      - name: GEFoundationCode
        in: path
        description: SI
        required: true
        schema:
          type: string
      - name: GEFoundationCategoryCode
        in: path
        description: LS
        required: true
        schema:
          type: string
      - name: subjectAreaCode
        in: query
        description: LIFESCI
        required: false
        schema:
          type: string
      - name: PageNumber
        in: query
        description: '1'
        required: false
        schema:
          type: integer
          format: int32
      - name: PageSize
        in: query
        description: '10'
        required: false
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: Record(s) found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GEFoundationCategoryCoursesCollection'
            text/json:
              schema:
                $ref: '#/components/schemas/GEFoundationCategoryCoursesCollection'
        ' 200':
          description: Record(s) found
        ' 400':
          description: Bad Request
        ' 401':
          description: Unauthorized
        ' 403':
          description: Forbidden
        ' 404':
          description: No Record Found
        ' 500':
          description: Server Error
      deprecated: false
components:
  schemas:
    GEFoundationCategoryCoursesCollection:
      type: object
      properties:
        geFoundationCategoryCourses:
          type: array
          items:
            $ref: '#/components/schemas/GEFoundationCategoryCourses'
        totalRecords:
          format: int32
          type: integer
        totalPages:
          format: int32
          type: integer
        pageNumber:
          format: int32
          type: integer
        pageSize:
          format: int32
          type: integer
        links:
          type: array
          items:
            $ref: '#/components/schemas/LinkModel'
    GEFoundationsCategory:
      type: object
      properties:
        geFoundationCategoryCode:
          type: string
        geFoundationCategoryName:
          type: string
        geFoundationCategoryStartTermCode:
          type: string
        geFoundationCategoryLastTermCode:
          type: string
        href:
          type: string
        rel:
          type: string
    GEFoundationsCollection:
      type: object
      properties:
        geFoundations:
          type: array
          items:
            $ref: '#/components/schemas/GEFoundations'
        totalRecords:
          format: int32
          type: integer
        totalPages:
          format: int32
          type: integer
        pageNumber:
          format: int32
          type: integer
        pageSize:
          format: int32
          type: integer
        links:
          type: array
          items:
            $ref: '#/components/schemas/LinkModel'
    LinkModel:
      type: object
      properties:
        href:
          type: string
        rel:
          type: string
        method:
          type: string
    GEFoundations:
      type: object
      properties:
        geFoundationCode:
          type: string
        geFoundationName:
          type: string
        geFoundationStartTermCode:
          type: string
        geFoundationLastTermCode:
          type: string
        geFoundationCategoryCollection:
          type: array
          items:
            $ref: '#/components/schemas/GEFoundationsCategory'
    GEFoundationCategoryCourses:
      type: object
      properties:
        geFoundationCode:
          type: string
        geFoundationStartTermCode:
          type: string
        geFoundationCategoryCode:
          type: string
        geFoundationCategoryStartTermCode:
          type: string
        courseCollection:
          type: array
          items:
            $ref: '#/components/schemas/GEFoundationCategoryCourse'
    GEFoundationCategoryCourse:
      type: object
      properties:
        subjectAreaCode:
          type: string
        courseCatalogNumber:
          type: string
        courseStartTermCode:
          type: string
        links:
          type: array
          items:
            $ref: '#/components/schemas/LinkModel'
        courseFoundationCategoryStartTermCode:
          type: string
        courseFoundationCategoryLastTermCode:
          type: string
  securitySchemes:
    application:
      type: oauth2
      flows:
        clientCredentials:
          scopes:
            read: Read access to protected resources
            write: Write access to protected resources
          tokenUrl: https://api.ucla.edu/oauth/client_credential/accesstoken?grant_type=client_credentials
      description: OAuth2