For Agents
Search parking locations, start and monitor parking sessions, and validate parking for enforcement.
Use for: I need to find parking locations near me, Start a parking session for my vehicle, Check if a license plate has paid for parking, Get details about a parking location
Not supported: Does not control physical parking hardware or manage parking facility operations — use only for consumer-facing parking payments and enforcement validation.
ParkMobile API enables parking location discovery, parking session management, and enforcement validation for consumer and enterprise parking applications. The API provides location search by coordinates with radius filtering, location detail retrieval, parking session creation and monitoring, and enforcement validation to check if a vehicle has an active parking session at a location.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the ParkMobile 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.
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 | shStep 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 instanceJentic 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.
What an agent can do with ParkMobile API.
Search parking locations by latitude, longitude, and radius
Retrieve detailed information for specific parking locations including rates and addresses
Start new parking sessions for vehicles at locations
GET STARTED
Query parking session details and status
Validate parking sessions for enforcement purposes
Patterns agents use ParkMobile API for, with concrete tasks.
★ Mobile Parking Payment
Integrate ParkMobile into parking payment apps or navigation systems. GET /locations with user coordinates returns nearby parking spots with rates. Users select a location, POST /sessions initiates a paid parking session, and GET /sessions/{session_id} monitors active sessions. This removes the need for physical meters and paper receipts.
GET /locations?lat={lat}&lng={lng}&radius={meters} to find nearby locations, then POST /sessions with location_id, vehicle info, and payment details to start a session.
Enforcement Validation
Parking enforcement officers use POST /enforcement/validate with a license plate and location to check if the vehicle has an active paid session. The API returns valid:true/false and session_id if found, allowing digital enforcement without chalk or tickets.
POST /enforcement/validate with license plate and location_id. If valid is false, issue a citation; if true, the vehicle has paid.
4 endpoints — parkmobile api enables parking location discovery, parking session management, and enforcement validation for consumer and enterprise parking applications.
METHOD
PATH
DESCRIPTION
/locations
Search parking locations by coordinates
/locations/{location_id}
Get location details
/sessions
Start a new parking session
/sessions/{session_id}
Get session details
/enforcement/validate
Validate if a vehicle has paid for parking
/locations
Search parking locations by coordinates
/locations/{location_id}
Get location details
/sessions
Start a new parking session
/sessions/{session_id}
Get session details
/enforcement/validate
Validate if a vehicle has paid for parking
Three things that make agents converge on Jentic-routed access.
Credential isolation
ParkMobile API keys are stored encrypted in Jentic's vault and injected as the X-API-Key header at execution time without exposure in prompts.
Intent-based discovery
Agents search by intent such as 'start parking session parkmobile' or 'validate parking enforcement' and Jentic returns the matching endpoint with schema.
Time to first call
Direct ParkMobile integration: 1-2 days. Through Jentic: under 1 hour — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
Specific to using ParkMobile API through Jentic.
What authentication does the ParkMobile API use?
The API uses API key authentication via the X-API-Key header. Jentic stores keys encrypted and injects them at execution time.
Can I validate if a vehicle has paid for parking?
Yes. POST /enforcement/validate with the license plate and location_id returns whether the vehicle has an active paid session, enabling digital enforcement.
Does the API handle parking payments?
The API initiates parking sessions but delegates payment processing to ParkMobile's payment infrastructure. Session creation implies payment authorization.