Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Áskell 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://jentic.com/install.sh?src=apis&api=%2Fapis%2Faskell.is%2Faskell" | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Faskell.is%2Faskell" | 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 Áskell API.
Create and update customer records with payment methods attached
Subscribe a customer to a plan and create multiple subscriptions in one call
List transactions and generate receipts for individual transaction UUIDs
Add a temporary payment method during a checkout flow
Manage webhook endpoints and inspect webhook delivery history
GET STARTED
Retrieve all subscriptions linked to a specific customer
Create checkout sessions for hosted payment collection
Patterns agents use Áskell API for, with concrete tasks.
★ Subscription Onboarding Flow
Convert a new sign-up into a paying subscriber by creating the Áskell customer, attaching a payment method, and subscribing them to the chosen plan. POST /customers/ creates the customer, POST /customers/paymentmethod/ attaches the card, and POST /customers/{customerReference}/subscriptions/add/ activates the subscription. Suitable for SaaS and membership businesses on the Icelandic market.
Create an Áskell customer for 'jane@example.is', attach a payment method, and subscribe to plan 'premium-monthly'
Receipt and Transaction Reporting
Pull the customer's transaction history via GET /transactions/ and generate per-transaction receipts via GET /transactions/{uuid}/receipt/. Useful for finance reconciliation, customer self-service, and compliance reporting where each charge needs an itemised receipt URL.
List Áskell transactions for the last 7 days and generate receipt URLs for any transaction over 10000 ISK
Webhook-Driven Subscription Lifecycle
Register an Áskell webhook for subscription events (payment success, payment failure, cancellation) and use the Webhook calls endpoint to inspect delivery history. Agents can react to failed payments by initiating dunning workflows or notifying customer support. Reduces silent churn from expired cards.
Create an Áskell webhook for the 'subscription.payment_failed' event and verify the most recent delivery succeeded via the Webhook calls endpoint
AI Agent for Subscription Operations
An agent integrated through Jentic can monitor failed payments, retry charges, manage plan upgrades, and answer customer questions about billing - all without holding the Áskell secret API key. Jentic stores the key in its vault and the agent uses Jentic's intent search to navigate the 35 endpoints by purpose rather than reading docs.
Through Jentic, find Áskell subscriptions that failed payment in the last 24 hours and draft a customer message with a payment-update link
35 endpoints — jentic publishes the only available openapi specification for áskell api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/customers/
Create a customer
/customers/{customerReference}/subscriptions/
Get all subscriptions for a customer
/customers/{customerReference}/subscriptions/add/
Add a subscription to a customer
/subscriptions/multi/
Create multiple subscriptions
/customers/paymentmethod/
Add a payment method to a customer
/transactions/
Get a list of transactions
/transactions/{uuid}/receipt/
Create a receipt for a transaction
/plans/
Get a list of plans
/customers/
Create a customer
/customers/{customerReference}/subscriptions/
Get all subscriptions for a customer
/customers/{customerReference}/subscriptions/add/
Add a subscription to a customer
/subscriptions/multi/
Create multiple subscriptions
/customers/paymentmethod/
Add a payment method to a customer
/transactions/
Get a list of transactions
/transactions/{uuid}/receipt/
Create a receipt for a transaction
/plans/
Get a list of plans
What agents get from Jentic-routed access to this vendor.
Setup
Wiring Áskell by hand means handling its API-key auth for recurring subscription billing, customer, and webhook calls. Through Jentic you install once, import the Áskell API from the API Directory, store the key once, and your agent calls it.
Permission scoping
Áskell puts the customer reference in the URL path (/customers/{customerReference}/subscriptions/), so a rule can pin your agent to subscription reads and additions for one customer. You choose the operations it may call, so creating new customers is not included unless you add it.
Credential isolation
Your Áskell secret API key is stored once, encrypted, by your own Jentic One instance and injected at execution time. It never enters the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'subscribe a customer to an Áskell plan', and Jentic returns the matching operation with its input schema so the agent calls the right endpoint without reading the reference docs.
Alternatives and complements available in the Jentic catalogue.
Stripe
Stripe is the global subscription billing platform; Áskell focuses on the Icelandic market with local payment-method support.
Choose Stripe for international billing; choose Áskell when ISK billing and Icelandic payment methods are the priority.
Specific to using Áskell API through Jentic.
Why is there no official OpenAPI spec for Áskell API?
Áskell does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Áskell API via structured tooling. It is validated against the live API and kept up to date. Get started with Jentic One, the self-hosted execution layer.
What authentication does the Áskell API use?
The API uses an API key passed in the Authorization header. Áskell issues two key types: a Secret-Api-Key for backend calls (Authorization: 'Api-Key {secret}') and a Public-Api-Key for client-side checkout. Jentic stores the secret key in its vault and never exposes it to the agent.
Can I subscribe a customer to a plan through the Áskell API?
Yes. POST /customers/{customerReference}/subscriptions/add/ adds a subscription to an existing customer. For multiple subscriptions in one call, use POST /subscriptions/multi/. The customer must have a payment method attached via POST /customers/paymentmethod/ first.
How do I generate a receipt for a transaction?
GET /transactions/{uuid}/receipt/ returns a receipt for the specified transaction UUID. List transactions first via GET /transactions/ to find the UUID, then call the receipt endpoint to retrieve the formatted receipt.
What are the rate limits for the Áskell API?
The OpenAPI specification does not document explicit rate limits. Áskell is a regional billing provider - implement exponential backoff on HTTP 429 and avoid polling /transactions/ in tight loops. Use webhooks for event-driven workflows where possible.
How do I create a customer through Jentic?
Search Jentic for 'create an Áskell customer' - POST /customers/ will be returned. Load the operation schema, supply the customer details, and execute. Jentic handles authentication and returns the customerReference for downstream subscription operations.
Can I limit what my agent is allowed to do with the Áskell API?
Yes. Because you run Jentic One yourself, your own rules decide which Áskell operations and credentials the agent may use. Since Áskell puts the customer reference in the URL path (/customers/{customerReference}/subscriptions/), you can pin the agent to reading and adding subscriptions for a single customer while leaving out operations you never granted, such as POST /customers/ to create new customers. You pick exactly which endpoints it can call, so transaction listing or webhook management is only available if you allow it.
Know of an official OpenAPI document? Contribute it →
For Agents
Run subscription billing - manage plans, customers, subscriptions, transactions, and webhooks - through the Áskell recurring-payments API.
Use for: I need to create a new customer in Áskell with a payment method, Subscribe a customer to a recurring plan, List all active subscriptions for a customer, Get a receipt for a specific transaction
Not supported: Does not handle one-off payments, payouts, or accounting - use for recurring subscription billing, customer management, and webhook events only.
Jentic publishes the only available OpenAPI specification for Áskell API, keeping it validated and agent-ready. Áskell is an Icelandic subscription billing platform that handles plans, customers, subscriptions, transactions, and webhooks for recurring revenue businesses. The API exposes 35 endpoints across customers, subscriptions, plans, transactions, webhooks, and checkout flows. Authentication uses an API key passed in the Authorization header - secret keys for backend calls and publishable keys for client-side checkout flows.