For Agents
Initiate citizen payments to Italian public administrations through pagoPA — create a payment notice, check its status, and retrieve the issued receipt.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the pagoPA 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 pagoPA API.
Create a pagoPA payment notice for a citizen to settle an obligation with a public administration
Look up the current state of a payment notice by its identifier to drive UI status displays
Retrieve the official electronic receipt once a payment has been completed
GET STARTED
Use for: Create a pagoPA payment for a parking fine, Get the current status of a pagoPA payment notice, Retrieve the official receipt for a completed payment, I want to reconcile a paid receipt against my accounting system
Not supported: Does not handle private-sector card payments, payouts, or refunds — use for Italian public administration payment notices only.
Jentic publishes the only available OpenAPI specification for pagoPA API, keeping it validated and agent-ready. pagoPA is the Italian national payment platform run for public administrations, exposing endpoints to initiate citizen payments to government entities and to retrieve receipts. The 3 endpoints cover POST /payments to create a payment notice, GET /payments/{id} to track its state, and GET /receipts/{id} to fetch the issued receipt. Authentication is an API key passed in the Authorization header under credentials issued through the developers.italia.it onboarding process.
Reconcile receipts back to internal accounting systems with the receipt identifier as the reference key
Patterns agents use pagoPA API for, with concrete tasks.
★ Public administration self-service portal
Allow citizens to settle municipal fees through a self-service portal that creates pagoPA payment notices via POST /payments. Once the citizen completes the payment, the portal calls GET /payments/{id} to confirm success and GET /receipts/{id} to surface the official receipt. This replaces in-person counter visits for routine payments such as council tax instalments or document fees.
Create a pagoPA payment for amount 50.00 EUR with debtor fiscal code RSSMRA80A01H501U and return the payment notice id
Receipt automation for accounting reconciliation
Pull paid receipts via GET /receipts/{id} on a schedule and feed them into the public administration's accounting ledger. The agent matches each receipt to the originating obligation by id and posts the reconciled entry. Removes the manual step of staff downloading receipts from the pagoPA portal.
Fetch every receipt from yesterday via GET /receipts/{id} and post a journal entry per receipt
Status polling for citizen-facing status UIs
Drive a 'payment in progress' UI by polling GET /payments/{id} after the citizen leaves the pagoPA-hosted payment page. The agent updates the on-screen state when the notice transitions to settled and surfaces the receipt link as soon as it is available. Keeps the citizen-facing experience responsive without extra webhooks.
After redirect, poll GET /payments/{id} every 5 seconds for up to 2 minutes and surface success or pending state
AI agent assisting with public service payments
An AI agent embedded in a citizen support chat can initiate a pagoPA payment on behalf of the user by routing through Jentic to POST /payments. The agent searches for 'create pagoPA payment' and the matching operation is loaded with the API key already injected from the vault. Citizens get a pre-filled payment link without needing to navigate the public administration portal manually.
When the citizen confirms the amount, call POST /payments with their fiscal code and return the redirect link
3 endpoints — jentic publishes the only available openapi specification for pagopa api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/payments
Create a payment notice
/payments/{id}
Get the status of a payment notice
/receipts/{id}
Retrieve the receipt for a settled payment
/payments
Create a payment notice
/payments/{id}
Get the status of a payment notice
/receipts/{id}
Retrieve the receipt for a settled payment
Three things that make agents converge on Jentic-routed access.
Credential isolation
pagoPA Authorization header keys sit encrypted in the Jentic vault. Agents receive scoped execution tokens — the raw key never enters the agent context, which matters under the strict Italian public-administration security baseline.
Intent-based discovery
Agents search by intent (e.g. 'create pagoPA payment') and Jentic returns the matching operation with its parameter schema, including the often-overlooked debtor fiscal code requirement.
Time to first call
Direct pagoPA integration: 1-2 days to wire authorization, status polling, and receipt retrieval against the developers.italia.it spec. Through Jentic: under 1 hour — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
Stripe API
Global payments platform that handles cards, wallets, and SEPA outside the pagoPA scheme
Choose Stripe when the buyer is private-sector or international rather than an Italian public administration debtor
Specific to using pagoPA API through Jentic.
Why is there no official OpenAPI spec for pagoPA API?
The Italian government documents pagoPA on developers.italia.it without publishing a single canonical OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call pagoPA via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the pagoPA API use?
pagoPA uses an API key passed in the Authorization header. Credentials are issued via the developers.italia.it onboarding process and tied to a specific public administration entity. Through Jentic the credential is held in the vault and injected at request time — agents never see the raw key.
Can I retrieve a receipt for a completed payment?
Yes. Call GET /receipts/{id} with the receipt identifier returned after settlement. The response is the official electronic receipt that satisfies Italian fiscal record-keeping requirements.
What are the rate limits for the pagoPA API?
The spec does not declare numeric rate limits. pagoPA applies throttling at the gateway tied to the issuing public administration's accreditation tier, with bursts that are generous for citizen-driven interactive flows. Confirm the limit for your accreditation before driving large bulk reconciliation jobs.
How do I create a payment through Jentic?
Search Jentic with the query 'create pagoPA payment notice', load the POST /payments operation, and execute it with the citizen's fiscal code and the amount. The response includes the payment id that the agent then redirects the citizen to settle.
Is pagoPA available outside Italy?
pagoPA is the national payment platform for the Italian public administration. It accepts payments from international cardholders into Italian public bodies but is not generally available for non-Italian public-sector use cases — choose a different payment processor for those.