Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

API 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 WorksAPI 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 / Identity Auth / Adyen / Adyen Hosted Onboarding API
Adyen Hosted Onboarding API logo

Adyen Hosted Onboarding API

Browse all Adyen APIs
✓ Official Vendor SpecIdentity AuthIdentity VerificationapiKey, basic2 EndpointsREST

For Agents

Generate links to Adyen-hosted onboarding and PCI compliance pages for marketplace account holders on Adyen's classic for-platforms integration.

Use for: I need to generate an Adyen onboarding link for a new marketplace seller, Get the URL of the PCI compliance questionnaire for an account holder, Send a hosted onboarding link to a seller to finish KYC details, Create a one-off PCI questionnaire link for a partner platform

Not supported: Does not handle account creation, document upload, or balance management — use for generating hosted onboarding and PCI questionnaire URLs only.

Generate links to Adyen-hosted onboarding and PCI compliance pages for marketplace account holders on the Adyen for Platforms classic integration. The API exposes two operations: one returns a URL to a hosted onboarding page where account holders complete verification details and another returns a URL to a hosted PCI compliance questionnaire. Designed to slot into a classic platform onboarding flow without building custom KYC and PCI UI.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Adyen Hosted Onboarding API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Adyen Hosted Onboarding 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 Adyen Hosted Onboarding API.

Generate a one-time URL to the Adyen-hosted onboarding page for a specific account holder

Generate a URL to the Adyen-hosted PCI compliance questionnaire for an account holder

Pass return URLs so that account holders are redirected back to the platform once they finish onboarding

Authenticate link generation calls with X-API-Key or basic auth web service credentials

Use Cases

Patterns agents use Adyen Hosted Onboarding API for, with concrete tasks.

★ Marketplace Seller Onboarding Flow

Embed Adyen's hosted onboarding page in a marketplace's seller signup flow rather than building a bespoke KYC UI. After creating an account holder via the Account API, call /getOnboardingUrl with the account holder code, redirect the seller to the returned URL, and capture the return URL once they submit verification details. Reduces time-to-launch because Adyen handles the UI, localisation, and verification status updates.

POST /getOnboardingUrl with accountHolderCode seller_8421 and returnUrl https://example.com/onboarding/done, then redirect the seller to the returned redirectUrl

PCI Compliance Questionnaire

Direct partner platforms or higher-risk account holders to Adyen's hosted PCI compliance questionnaire so they can complete their self-assessment without the marketplace building its own questionnaire UI. Call /getPciQuestionnaireUrl with the account holder code, share the returned link, and rely on Adyen to record completion. Useful for platforms-for-partners scenarios where each partner takes responsibility for PCI compliance.

POST /getPciQuestionnaireUrl with accountHolderCode partner_4071 and returnUrl https://example.com/pci/done, then email the returned redirectUrl to the partner contact

AI Agent Onboarding Concierge

AI agents in support tooling can resend onboarding or PCI links to sellers who lost their session, without raw access to the Adyen API key. The agent searches Jentic for 'generate Adyen onboarding URL', retrieves the /getOnboardingUrl schema with required accountHolderCode and returnUrl fields, and executes the call. The link is delivered back to the seller through the support channel while credentials remain isolated in the Jentic vault.

Search Jentic for 'generate Adyen onboarding URL', load the schema, then POST /getOnboardingUrl for the accountHolderCode pulled from the support ticket and reply with the returned redirectUrl

Key Endpoints

2 endpoints — generate links to adyen-hosted onboarding and pci compliance pages for marketplace account holders on the adyen for platforms classic integration.

METHOD

PATH

DESCRIPTION

POST

/getOnboardingUrl

Get a link to the Adyen-hosted onboarding page

POST

/getPciQuestionnaireUrl

Get a link to the PCI compliance questionnaire

POST

/getOnboardingUrl

Get a link to the Adyen-hosted onboarding page

POST

/getPciQuestionnaireUrl

Get a link to the PCI compliance questionnaire

Why Jentic?

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

Credential management

Credential isolation

Adyen X-API-Key credentials are stored encrypted in the Jentic MAXsystem vault. Agents call /getOnboardingUrl and /getPciQuestionnaireUrl through scoped tokens, so the raw API key never enters agent prompts or logs.

Intent-based discovery

Intent-based discovery

Agents search by intent ('generate Adyen onboarding link', 'get a PCI questionnaire URL') and Jentic returns the matching Hosted Onboarding operation with its full request schema, including accountHolderCode and returnUrl fields.

Time to first call

Time to first call

Direct integration: 1-2 days for auth, link generation, and return-URL handling. Through Jentic: under 30 minutes — search, load schema, execute, hand the resulting URL back to the seller flow.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

Adyen Account API

→

Creates the account holders that the Hosted Onboarding API generates links for

Use the Account API to create the account holder, then use Hosted Onboarding to generate the verification link sent to the seller

Complementary

Adyen Fund API

→

Manages funds for the same classic for-platforms account holders

Use Hosted Onboarding to onboard sellers, then use the Fund API to handle their balances and payouts

Alternative

Onfido API

→

Provides standalone hosted identity verification flows independent of a payment provider

Choose Onfido when you want KYC verification independent of your payment processor; choose Adyen Hosted Onboarding when verification must integrate directly with the Adyen platform account

FAQs

Specific to using Adyen Hosted Onboarding API through Jentic.

What authentication does the Adyen Hosted Onboarding API use?

The Hosted Onboarding API accepts an API key in the X-API-Key header or HTTP Basic authentication with web service user credentials. Generate the key from your Adyen Customer Area. Through Jentic, your X-API-Key is stored encrypted in the MAXsystem vault and agents authenticate with scoped tokens, keeping the raw key out of agent context.

Can I customise the Adyen-hosted onboarding page?

Customisation is limited to settings configured in your Adyen Customer Area (logos, terms of service URL, supported locales). The API itself only generates the URL — you cannot pass per-call branding parameters. The returnUrl is the main per-call control, used to redirect the account holder back into your flow after they submit their details.

What are the rate limits for the Hosted Onboarding API?

Rate limits are tied to your platform contract and are typically low because URL generation is a one-off operation per onboarding session. Excess calls return HTTP 429. If you need to regenerate links in bulk (for example after a session timeout policy change), back off on rate limits and contact your Adyen account team.

How do I generate an onboarding link through Jentic?

Search Jentic for 'generate Adyen onboarding URL' to find the POST /getOnboardingUrl operation. Required fields are accountHolderCode and returnUrl, with optional fields for locale and platform identifier. Jentic loads the full schema and executes with vaulted credentials. Sign up at https://app.jentic.com/sign-up to get started.

How long does the returned onboarding URL remain valid?

The returned URL is single-use and expires after the account holder completes the flow or after the session timeout configured for your platform. If the account holder abandons the page and comes back later, regenerate a new URL via /getOnboardingUrl rather than reusing the old one.

GET STARTED

Start building with Adyen Hosted Onboarding API

Explore with Jentic
View OpenAPI Document