How to Connect Adyen to an AI Agent
Auth setup
1. Log into Adyen Customer Area. 2. Go to Developers > API credentials. 3. Generate API key. 4. Use test prefix URL for sandbox.
Key facts
| Base URL | https://checkout-test.adyen.com/v71/ |
| API version | v71 |
| Auth | API key in X-API-Key header. Generate in Adyen Customer Area > Developers > API credentials. |
| Request body | application/json |
| Pagination | N/A for payment endpoints. |
| Rate limit | Test: 100 req/sec. Live: depends on contract. |
| Error format | JSON: {"status":422,"errorCode":"...","message":"...","errorType":"..."} |
Key endpoints
| Method | Path | Description |
POST | /sessions | Create payment session (Drop-in) |
POST | /payments | Make payment (API-only) |
POST | /payments/details | Submit additional payment details |
GET | /paymentMethods | Get available payment methods |
Quickstart
POST /v71/sessions
X-API-Key: {api_key}
Content-Type: application/json
{"amount":{"value":10000,"currency":"USD"},"merchantAccount":"{merchant}","returnUrl":"https://example.com/return"}
Agent pitfalls & tips
- Amounts are in minor units: {value:10000, currency:'USD'} = $100.00.
- Test URL: checkout-test.adyen.com. Live URL: checkout-live.adyen.com/{prefix}.
- 250+ payment methods supported โ use /paymentMethods to discover available ones.
- Sessions API (Drop-in) is simplest. Payments API for full control.
- merchantAccount is required โ found in Adyen Customer Area.
- Test card: 4111 1111 1111 1111 with any future date and 737 CVC.
Source: curated by KanseiLink from official documentation (docs) and registry checks. Last reviewed: 2026-04-07. Specs change โ verify against the official docs before production use.
Frequently Asked Questions
What is Adyen's AEO score?
โผ
Adyen has an AEO score of 0.60 and is rated BBB (Basic agent connectivity available). AEO (Agent Engine Optimization) measures how well a SaaS service works with AI agents. Scores range from 0.00 to 1.00, with grades from AAA (best) to D (not agent-ready).
Is Adyen AI-agent-ready?
โผ
Adyen is currently connectable for AI agent use. API access is available but no dedicated MCP server has been published yet. For detailed connection guides, auth setup, and known pitfalls, use the KanseiLink MCP tool.
How does Adyen compare to other Payment services?
โผ
In the Payment category, Adyen is rated BBB. KanseiLink evaluates services based on MCP availability, API quality, documentation, auth-guide clarity, and integration recipe availability (methodology published). Visit the full rankings at kansei-link.com to see how Adyen compares.
How can I integrate Adyen with an AI agent?
โผ
The fastest way to integrate Adyen with an AI agent is through KanseiLink MCP. Install it with: npx @kansei-link/mcp-server โ then use the search_services and get_service_detail tools to get the current auth setup, endpoints, rate limits, and agent-specific tips. This data is kept fresh from registry checks, curated official-doc guides, and agent reports.
How do I authenticate with Adyen?
โผ
API key in X-API-Key header. Generate in Adyen Customer Area > Developers > API credentials. Setup: 1. Log into Adyen Customer Area. 2. Go to Developers > API credentials. 3. Generate API key. 4. Use test prefix URL for sandbox.
What are Adyen's API rate limits?
โผ
Test: 100 req/sec. Live: depends on contract.