For Agents
Authenticate against MobilePay and look up MobilePay resources by ID for Danish mobile payment integrations.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the MobilePay 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 MobilePay API.
Exchange API key credentials for a MobilePay bearer token via the /auth/token endpoint
Retrieve the list of MobilePay resources available to the authenticated merchant
Fetch a specific MobilePay resource by its identifier
GET STARTED
Use for: I need to authenticate against the MobilePay API and obtain a bearer token, Retrieve the list of MobilePay resources available to my merchant account, Get the details of a specific MobilePay resource by ID, Check whether my MobilePay API key is valid by exchanging it for a token
Not supported: Does not handle card processing, refunds, or PoS terminals — use for MobilePay token exchange and resource lookup only.
MobilePay is a Danish mobile payment solution widely used across Denmark and the Nordics for peer-to-peer transfers and merchant payments. The API exposes a small surface for token exchange and resource lookup, intended for partners and merchants integrating MobilePay into their checkout or customer flows. Authentication is handled via an X-API-Key header and a token endpoint that issues bearer tokens for downstream calls.
Authorise downstream MobilePay calls with X-API-Key header credentials
Bridge MobilePay merchant accounts into checkout and back-office systems
Patterns agents use MobilePay API for, with concrete tasks.
★ Danish merchant onboarding
Merchants integrating MobilePay into a Danish online checkout use the /auth/token endpoint to exchange their issued API key for a short-lived bearer token, then call /resources to discover the merchant resources available to that key. This pattern keeps long-lived credentials out of runtime traffic and aligns with MobilePay's partner integration model for the Danish market.
Call POST /auth/token with the merchant's X-API-Key, then GET /resources and return the list of resource IDs available to that account.
Resource lookup for reconciliation
Back-office and reconciliation tools fetch a single MobilePay resource by ID using GET /resources/{id} to verify the resource exists and pull its current attributes. This supports lightweight reconciliation between MobilePay-linked merchant data and an internal ledger or CRM record, without paginating the full resource list.
Call GET /resources/{id} for resource ID 'res_123' and return whether the resource was found along with its attributes.
Agent-driven MobilePay integration via Jentic
An AI agent that needs to wire a Danish merchant into MobilePay can search Jentic for 'authenticate to MobilePay', load the /auth/token operation schema, and execute the call without ever holding the raw API key. The agent then chains into /resources to discover what the credential can access, all from within a single intent-driven workflow.
Search Jentic for 'authenticate to MobilePay', load the /auth/token schema, execute the token exchange, then call /resources and report the discovered resource IDs.
3 endpoints — mobilepay is a danish mobile payment solution widely used across denmark and the nordics for peer-to-peer transfers and merchant payments.
METHOD
PATH
DESCRIPTION
/auth/token
Exchange API key for a bearer token
/resources
List MobilePay resources
/resources/{id}
Retrieve a MobilePay resource by ID
/auth/token
Exchange API key for a bearer token
/resources
List MobilePay resources
/resources/{id}
Retrieve a MobilePay resource by ID
Three things that make agents converge on Jentic-routed access.
Credential isolation
MobilePay X-API-Key values are stored in the Jentic MAXsystem vault. Agents receive scoped bearer tokens issued by /auth/token; the raw API key never enters the agent's context.
Intent-based discovery
Agents search Jentic for intents like 'authenticate to MobilePay' or 'list MobilePay resources' and Jentic returns the matching operations with their input schemas, so the agent can call the right endpoint without browsing developer.mobilepay.dk.
Time to first call
Direct MobilePay integration: 1-3 days for partner onboarding, key handling, and token rotation. Through Jentic: under 1 hour once the merchant key is loaded into the vault.
Alternatives and complements available in the Jentic catalogue.
Stripe API
Global card and wallet payment processor with broader coverage outside the Nordics
Choose Stripe when the merchant needs international card processing or coverage outside Denmark; use MobilePay when the buyer base is Danish and expects MobilePay at checkout.
Specific to using MobilePay API through Jentic.
What authentication does the MobilePay API use?
The MobilePay API uses an apiKey scheme: callers send their key in the X-API-Key request header and exchange it for a bearer token at POST /auth/token. Through Jentic, the X-API-Key value is held in the MAXsystem vault and never exposed to the agent's context.
Can I list all MobilePay resources for my merchant account?
Yes. Call GET /resources with a valid bearer token to retrieve the resources tied to the authenticated merchant. Use GET /resources/{id} to fetch a single resource by its identifier.
What are the rate limits for the MobilePay API?
Rate limits are not declared in the OpenAPI specification. Refer to the MobilePay developer portal at https://developer.mobilepay.dk/ for the current per-merchant quotas and back off on HTTP 429 responses.
How do I authenticate to MobilePay through Jentic?
Install the SDK with pip install jentic, then search for 'authenticate to MobilePay', load the /auth/token operation schema, and execute it. Jentic injects the X-API-Key from the vault and returns the bearer token to the agent.
Does the MobilePay API support payment capture or refunds?
The OpenAPI specification published in this catalogue covers token exchange and resource lookup only. For payment capture, refunds, or PoS integrations, consult the MobilePay developer portal for the relevant product API.
Is the MobilePay API free to use?
MobilePay is a commercial payments platform: API access is gated by merchant agreements and partner onboarding. There is no public free tier. Get started with Jentic at https://app.jentic.com/sign-up.