Skip to main content

SpringAPI Endpoint: GET Award Cycle IDs and Names (ALL cycles for an institution)

About

Type: Read-only

Endpoint:

GET /api/award-cycles

Description: Retrieves all award cycles available to the institution.


Authentication


Success Response

200 OK

[
 {
   "id": 1,
   "name": "Fall Term"
 },
 {
   "id": 2,
   "name": "2026 Spring Term"
 }
]

Response Fields

Field

Type

Description

id

number

Unique identifier of the award cycle

name

string

Name of the award cycle


Error Responses

HTTP Code

Description

401 Unauthorized

Missing or invalid API token


Notes

  • Returns only award cycles accessible by the API token

  • The id value is required for other SpringAPI endpoints that accept awardCycleId

Did this answer your question?