Does GenerateSEPA have an API?
Yes. We provide a REST API so your ERP, SaaS platform or internal app can generate SEPA XML files without human intervention.
TL;DR
- REST with JSON in/out.
- Auth with API key (header
Authorization: Bearer <key>). - Supports SCT, SCT Inst and SDD CORE/B2B.
- Full docs at /api.
- Examples in Python, Node, PHP, Ruby.
Example
curl -X POST https://api.generatesepa.com/v1/conversions \
-H "Authorization: Bearer YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"profile_id":"p_123","operations":[{...}]}'
Returns base64 SEPA XML + a PDF summary.
When does it pay off?
- Recurring automated generation.
- ERP/CRM integration.
- SaaS platforms billing their own customers.
- Data pipelines where the CSV lives in an external system.
Conclusion
Read the API documentation and start with a free trial API key.