UW Enterprise Web Services Resource List API

UW Enterprise Web Services Resource List API — a discovery resource published at the root of both the Student Web Service and the IdCard Web Service. Per-path servers[] in the specification record which host serves which path.

Operations 2

GET /v1 #
GET /v5 Get available v5 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/university-of-washington-resourcelist-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

university-of-washington-resourcelist-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: UW Enterprise Web Services Resource List API
  description: 'Resource-list discovery endpoints published by the UW-IT Enterprise Web Services estate: /v5 enumerates Student Web Service (SWS) resources, /v1 enumerates IdCard Web Service (IdCardWS) resources.'
  contact:
    name: Enterprise Web Services & Events Team
    url: https://itconnect.uw.edu/service/enterprise-web-services-and-events/
    email: sws-support@uw.edu
  version: v5 (SWS) / v1 (IdCardWS)
  termsOfService: https://www.washington.edu/online/terms/
servers:
- url: https://ws.admin.washington.edu/student
  description: UW-IT Enterprise Web Services production host for the Student Web Service
- url: https://ws.admin.washington.edu/idcard
  description: UW-IT Enterprise Web Services production host for the IdCard Web Service
externalDocs:
  description: UW-IT Enterprise Web Services registry
  url: https://webservices.washington.edu/sws/
tags:
- name: ResourceList
x-operator: institution
x-provenance:
  method: derived
  source: openapi/_original/university-of-washington-student-web-service.yaml + openapi/_original/university-of-washington-idcard-web-service.yaml
  generated: '2026-08-30'
  note: Re-based by the university pipeline on 2026-08-30. refine-openapis had welded the IdCard Web Service title/contact/base onto outputs split from the Student Web Service original; identity restored from the true parent named above and the relative base resolved to the production host published on the EWS registry.
paths:
  /v1:
    get:
      tags:
      - ResourceList
      operationId: GetResources
      responses:
        '200':
          description: OK
          content:
            text/html:
              schema:
                $ref: '#/components/schemas/ResourceListViewModel'
            application/xml:
              schema:
                $ref: '#/components/schemas/ResourceListViewModel'
            text/xml:
              schema:
                $ref: '#/components/schemas/ResourceListViewModel'
            text/plain:
              schema:
                $ref: '#/components/schemas/ResourceListViewModel'
            application/json:
              schema:
                $ref: '#/components/schemas/ResourceListViewModel'
            text/json:
              schema:
                $ref: '#/components/schemas/ResourceListViewModel'
        '202':
          description: Accepted
        '301':
          description: MovedPermanently
        '302':
          description: Found
        '304':
          description: NotModified
        '401':
          description: Identity '{identity}' is not authorized to access this resource.
        '405':
          description: MethodNotAllowed
        '500':
          description: InternalServerError
        '503':
          description: ServiceUnavailable
    servers:
    - url: https://ws.admin.washington.edu/idcard
      description: UW-IT Enterprise Web Services production host for the IdCard Web Service
  /v5:
    get:
      tags:
      - ResourceList
      summary: Get available v5 resources
      description: "<pre>\n                {\n                    \"DisplayTitle\" : \"Service Resource List\",\n                    \"ews_guid\" : \"4533A5E5-2C26-4923-8574-A6C07FFFE51D\",\n                    \"LongDescription\" : \"Get available resources\",\n                    \"ShortDescription\" : \"Get available resources\",\n                    \"OriginatingSchema\" : [ { \"source\": \"hardcoded\" } ],\n                    \"Notes\" : \"This resource requires any of the following ASTRA roles:\n                                 - sws:Support\n                                 - sws:GradeSubmitter\n                                 - sws:UnitReader\n                                 - sws:AdmReader\n                               This resource supports the following authentication types:\n                                 - X.509 Certificate\n                                 - NetID\n                                 - AccessToken \",\n                    \"Links\" : [],\n                    \"Synonyms\" : []\n                }\n                </pre>"
      operationId: GetSWSResources
      responses:
        '200':
          description: OK
          content:
            text/html:
              schema:
                $ref: '#/components/schemas/ResourceListViewModel_2'
            application/xml:
              schema:
                $ref: '#/components/schemas/ResourceListViewModel_2'
            text/xml:
              schema:
                $ref: '#/components/schemas/ResourceListViewModel_2'
            text/plain:
              schema:
                $ref: '#/components/schemas/ResourceListViewModel_2'
            application/json:
              schema:
                $ref: '#/components/schemas/ResourceListViewModel_2'
            text/json:
              schema:
                $ref: '#/components/schemas/ResourceListViewModel_2'
        '202':
          description: Accepted
        '301':
          description: MovedPermanently
        '302':
          description: Found
        '304':
          description: NotModified
        '401':
          description: Identity '{identity}' is not authorized to access this resource.
        '405':
          description: MethodNotAllowed
        '500':
          description: InternalServerError
        '503':
          description: ServiceUnavailable
    servers:
    - url: https://ws.admin.washington.edu/student
      description: UW-IT Enterprise Web Services production host for the Student Web Service
components:
  schemas:
    ResourceListViewModel:
      type: object
      properties:
        metadata:
          type:
          - string
          - 'null'
        pageCount:
          type:
          - string
          - 'null'
          description: 'Actual number of records on the current search results page. This must be set by the view in order

            for paging to work.'
        previousPageStart:
          type:
          - string
          - 'null'
          description: The counter value for the start of the previous search results page.
          readOnly: true
        pageSize:
          type:
          - string
          - 'null'
          description: Requested number of records for the current search results page.
        pageStart:
          type:
          - string
          - 'null'
          description: The counter value for the start of the current search results page.
        nextPageStart:
          type:
          - string
          - 'null'
          description: The counter value for the start of the next search results page.
          readOnly: true
        totalCount:
          type: integer
          format: int32
        pageStartOffset:
          type: integer
          description: 'The page start offset. Since sources are generally 0 based and the view

            defaults to 1 based, our offset defaults to -1.'
          format: int32
        format:
          $ref: '#/components/schemas/ViewFormats'
        xhtmlTitle:
          type:
          - string
          - 'null'
          readOnly: true
        resources:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/UriResourceWithTitle'
      additionalProperties: false
    ViewFormats:
      enum:
      - 1
      - 2
      - 3
      - 5
      type: integer
      format: int32
    UriResourceWithTitle_2:
      type: object
      properties:
        Href:
          type:
          - string
          - 'null'
          format: uri
        Name:
          type:
          - string
          - 'null'
      additionalProperties: false
      description: "{\n    \"DisplayTitle\" : \"Resource URI\"\n}"
    UriResourceWithTitle:
      type: object
      properties:
        href:
          type:
          - string
          - 'null'
          format: uri
        name:
          type:
          - string
          - 'null'
      additionalProperties: false
    ResourceListViewModel_2:
      type: object
      properties:
        Resources:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/UriResourceWithTitle_2'
      additionalProperties: false
      description: "{\n    \"DisplayTitle\" : \"Resource List Model\",\n    \"TargetSchema\" : [{\"target\" : \"SWS.Resource\"}]\n}"