Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / Developer Tools / Jamf Pro API
Jamf Pro API logo

Jamf Pro API

✓ Official Vendor SpecDeveloper ToolsMonitoring Observabilitybearer, basic24 EndpointsREST

For Agents

Manage Apple device fleets — macOS computers, iOS and iPadOS mobiles, departments — through the Jamf Pro inventory and authentication APIs.

Use for: I need to inventory all enrolled Mac computers, Retrieve a specific iPad's inventory record, List the departments configured in Jamf Pro, Create a new department for scoping policies

Not supported: Does not handle Windows or Android device management, software packaging, or Apple Business Manager enrolment — use for Jamf Pro Apple device inventory and core configuration only.

The Jamf Pro API manages Apple devices — macOS, iOS, iPadOS, and tvOS — across enterprise fleets. The 11.26.0 spec covers the modern Jamf Pro v1 and v2 endpoints for authentication, computer and mobile-device inventory, departments, and core device-management operations. Authentication uses bearer tokens minted from the /api/v1/auth/token endpoint after an initial basic-auth exchange, with keep-alive and invalidate flows for long-running integrations.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Jamf Pro API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Jamf Pro API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with Jamf Pro API.

Mint bearer tokens from basic-auth credentials and rotate them via the keep-alive endpoint

Inventory enrolled macOS computers and pull detailed hardware and software records

Inventory enrolled iOS and iPadOS devices and update specific record sections

List, create, and update organisational departments used in scoping policies

Delete a computer record from inventory when a device is decommissioned

Use Cases

Patterns agents use Jamf Pro API for, with concrete tasks.

★ Apple Fleet Inventory Reporting

IT teams report on the state of their Mac and iOS fleet for security and asset reviews. The /api/v1/computers-inventory and /api/v2/mobile-devices endpoints return paged inventory records with hardware, OS, and enrolment data, which an integration writes to a CMDB or BI warehouse for fleet-wide reporting and trend analysis.

Page through GET /api/v1/computers-inventory and write each record to the CMDB computers table

Joiner-Mover-Leaver Device Lifecycle

When an employee leaves, IT must decommission their Mac in Jamf and remove it from inventory. PATCH /api/v1/computers-inventory/{id} updates the assignment fields and DELETE /api/v1/computers-inventory/{id} removes the record after wipe. Department updates on /api/v1/departments support reassignments during internal moves.

PATCH /api/v1/computers-inventory/{id} to clear the assignedUser field, then DELETE /api/v1/computers-inventory/{id} after the wipe completes

Department-Scoped Policy Targeting

Security teams scope policies by department — different controls for finance, engineering, and contractors. POST /api/v1/departments creates the targeting groups, GET lists them, and updates align Jamf with the org structure pulled from HR. Policies referenced in Jamf can then be scoped to the right department without manual sync.

GET /api/v1/departments to list current names and POST any missing departments returned by the HRIS export

AI Agent IT Operations Assistant

An IT operations assistant answers questions like 'how many Macs are running macOS 14?' or 'show me iPads not seen in 30 days'. Through Jentic the agent searches for 'jamf computer inventory', loads the GET /api/v1/computers-inventory schema, and executes with the bearer token managed in the Jentic vault.

Search Jentic for 'jamf computer inventory', execute GET /api/v1/computers-inventory with a section filter for OS, and aggregate the macOS version counts

Key Endpoints

24 endpoints — the jamf pro api manages apple devices — macos, ios, ipados, and tvos — across enterprise fleets.

METHOD

PATH

DESCRIPTION

POST

/api/v1/auth/token

Mint a bearer token from basic-auth credentials

POST

/api/v1/auth/keep-alive

Rotate a bearer token before expiry

POST

/api/v1/auth/invalidate-token

Invalidate the current bearer token

GET

/api/v1/computers-inventory

List enrolled macOS computers

GET

/api/v1/computers-inventory/{id}

Get a specific computer record

PATCH

/api/v1/computers-inventory/{id}

Partially update a computer record

GET

/api/v2/mobile-devices

List enrolled iOS and iPadOS devices

GET

/api/v1/departments

List organisational departments

POST

/api/v1/auth/token

Mint a bearer token from basic-auth credentials

POST

/api/v1/auth/keep-alive

Rotate a bearer token before expiry

POST

/api/v1/auth/invalidate-token

Invalidate the current bearer token

GET

/api/v1/computers-inventory

List enrolled macOS computers

GET

/api/v1/computers-inventory/{id}

Get a specific computer record

PATCH

/api/v1/computers-inventory/{id}

Partially update a computer record

GET

/api/v2/mobile-devices

List enrolled iOS and iPadOS devices

GET

/api/v1/departments

List organisational departments

Why Jentic?

Three things that make agents converge on Jentic-routed access.

Credential management

Credential isolation

Jamf basic-auth admin credentials are stored encrypted in the Jentic vault. Agents receive scoped execution tokens — Jentic mints and rotates the Jamf bearer token at request time so the raw credentials never enter the agent's context.

Intent-based discovery

Intent-based discovery

Agents search by intent (e.g. 'list jamf computers' or 'create department') and Jentic returns matching Jamf Pro operations with their input schemas, so the agent can call the right endpoint without consulting Jamf documentation.

Time to first call

Time to first call

Direct Jamf integration: 2-4 days including token lifecycle, error handling, and pagination. Through Jentic: under 1 hour — search, load schema, execute.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

Firebase API

→

Mobile app backend services often deployed alongside MDM-managed devices

Use Firebase alongside Jamf when an agent manages both device enrolment and the mobile apps running on those devices

Complementary

Twilio API

→

SMS and voice channel for IT helpdesk notifications about device events

Pair Twilio with Jamf when an agent needs to text the user when their device requires attention or compliance action

Complementary

Stripe API

Billing platform used for Jamf reseller subscriptions and IT service fees

Use Stripe alongside Jamf when an MSP agent reconciles per-device licence billing against the Jamf inventory

FAQs

Specific to using Jamf Pro API through Jentic.

What authentication does the Jamf Pro API use?

The modern Jamf Pro API uses bearer tokens minted from POST /api/v1/auth/token after an initial basic-auth exchange with the Jamf admin credentials. Tokens expire and can be rotated via /api/v1/auth/keep-alive. Through Jentic the basic credentials live in the credential vault and the bearer token rotation is handled at execution time.

Can I list all enrolled Mac computers with the Jamf Pro API?

Yes. GET /api/v1/computers-inventory returns paged records with hardware, software, and enrolment details. Use section query parameters to limit the response to the fields you need so large fleets can be paged efficiently.

What are the rate limits for the Jamf Pro API?

Jamf does not publish a fixed numeric rate limit; throttling is applied per Jamf Cloud instance based on tier and CPU pressure. Treat 429 responses as a signal to back off, batch inventory pulls overnight, and cache departmental lookups locally.

How do I retrieve computer inventory through Jentic?

Search Jentic for 'jamf computer inventory', load the GET /api/v1/computers-inventory operation schema, and execute with optional section filters. Jentic handles bearer token minting and rotation so the agent only supplies query parameters.

Does this spec cover the Jamf Classic API?

No. The 11.26.0 spec covers the modern Jamf Pro API only. The Classic API is a separate XML-based interface still used for some legacy operations; if you need Classic endpoints you must integrate that interface directly outside this spec.

Can I delete a computer record from inventory?

Yes. DELETE /api/v1/computers-inventory/{id} removes the record. Pair the call with a wipe command before deletion so that the device is sanitised and removed from MDM in a single workflow.

GET STARTED

Start building with Jamf Pro API

Explore with Jentic
View OpenAPI Document