Skip to main content
Returns the latest known point release for the given board ID and macOS major version. Unlike GET /items/:, this endpoint takes a major version only (not a full point release) and returns a concise summary without proximo fields.

Endpoint

GET https://proximosapi.enlazosystems.com/items/{boardID}:{majorVersion}
Authorization: YOUR_DECODED_LICENSE_KEY

Path Parameters

boardID
string
required
The Apple internal board identifier for the Mac model.
EraExample board IDs
Apple SiliconJ293AP, J413AP, J316cAP
IntelMac-35C5E08120C7EEAF, Mac-4B682C642B45593E
PowerPC (macOS 10.0–10.5)PowerPC
Classic Mac OSG3, G4, 68040, 68030, 68000
majorVersion
string
required
The macOS major version number only — not a full point release.
EraFormatExamples
Modern macOS (11+)Single integer14, 15, 26
macOS 10.xTwo-part (10.Y)10.15, 10.14
Classic Mac OSTwo-part (X.Y)8.5, 9.2

Example Requests

curl -H "Authorization: YOUR_DECODED_LICENSE_KEY" \
  https://proximosapi.enlazosystems.com/items/J293AP:14

Response

[
  {
    "major_version": "14",
    "board_id_major_version": "J293AP:14",
    "releasedDate": "2026-05-11",
    "version": "14.8.7",
    "resolved_board_id": "J293AP"
  }
]

Response Fields

major_version
string
The macOS major version from the request.
board_id_major_version
string
The internal DynamoDB composite key: {boardID}:{major_version}.
releasedDate
string
Release date of the latest point release for this board/major, in YYYY-MM-DD format.
version
string
The latest known point release version for this board/major.
resolved_board_id
string
The board ID from the request path.

Notes

  • If the specified board ID does not support the given major version, a 404 is returned.
  • The response is always an array containing one item.
  • To also retrieve the next available update from a specific point release, use GET /items/: instead.