UCSB BARC Students API

Student records as held by BARC, the campus Billing, Accounts Receivable and Collections system. Private tier; the contract is public, the data is not. Published as Swagger 2.0, 1 path, base https://api.ucsb.edu/students/private/barcstudents/v1.

Operations 1

GET /students #

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/barc-students-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

ucsb-barc-students-openapi.yml Raw ↑
swagger: '2.0'
info:
  version: v1
  title: Public BARC Students API v1.0
  description: "Students API from the Office of the Registrar specifically for BARC mainframe retirement.\
    \ This API is designed to find student records that have changed within a given day range.\r\n   \
    \                               This API allows for querying student perms and email addresses information\
    \ for BARC systems. \r\n                               It is different from the Public Students API\
    \ as it does not provide any other student information.<br/> <br/>\r\n                        The\
    \ BasicAuth header is a base64-encoded(ucsbNetId:password) combination. The ucsbNetId/password combination\
    \ should be of a service account registered with the Campus Identity systems (ETS, the Campus LDAP).\
    \ \r\n                        This ucsbNetId needs to be supplied to the Office of the Registrar as\
    \ part of the approval process."
  x-source-url: https://developer.ucsb.edu/sites/default/files/openapi/barcstudents-v1_0_0.yaml
  x-last-validated: '2026-08-30'
  x-operator: institution
host: api.ucsb.edu
basePath: /students/private/barcstudents/v1
schemes:
- https
securityDefinitions:
  ucsb-api-key:
    name: ucsb-api-key
    in: header
    type: apiKey
  BasicAuth:
    type: basic
security:
- ucsb-api-key: []
- BasicAuth: []
paths:
  /students:
    get:
      tags:
      - Students
      summary: ''
      operationId: /students
      consumes: []
      produces:
      - application/json
      - text/json
      - application/xml
      - text/xml
      parameters:
      - name: daysBack
        in: query
        description: Number of days to look back
        required: true
        type: integer
        format: int32
        maximum: 30
        minimum: 1
      responses:
        '200':
          description: OK
          schema:
            $ref: '#/definitions/StudentsResponse'
        '400':
          description: Bad or malformed request. See response body for details.
          schema:
            $ref: '#/definitions/WebApiInvalidModel'
        '401':
          description: Unauthorized. See response body for details.
          schema:
            $ref: '#/definitions/SimpleMessageModel'
definitions:
  StudentsRequest:
    description: Model for requests to get student data
    required:
    - daysBack
    type: object
    properties:
      daysBack:
        format: int32
        description: Number of days to look back
        maximum: 30
        minimum: 1
        type: integer
  StudentsResponse:
    description: A wrapper class that contains messaging for the API call and the payload
    type: object
    properties:
      data:
        description: Results of API call, if any. NULL on error.
        type: array
        items:
          $ref: '#/definitions/Student'
  Student:
    description: A student record that was updated within the given time frame
    type: object
    properties:
      perm:
        description: "Student Identification Number.\r\nAssigned for Undergraduates on entry to the Admissions\
          \ system.\r\nAssigned to Graduate students on entry to the Registration system.\r\nAssigned\
          \ to Summer Sessions students.\r\n\r\nPerm is also named SR_Identifier in many applications."
        type: string
      emailAddress:
        description: Email Address
        type: string
  WebApiInvalidModel:
    type: object
    properties:
      message:
        type: string
      modelState:
        type: object
        additionalProperties:
          type: array
          items:
            type: string
  SimpleMessageModel:
    type: object
    properties:
      message:
        type: string