Does GenerateSEPA have an API?

Published on · Updated on

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.


Frequently Asked Questions

What's the rate limit?
1,000 requests/hour on the standard plan; raised for enterprise customers.
Are there webhooks?
Yes. We notify on every completed conversion to integrate with your event queue.
Is there an official SDK?
We publish official examples in Python, Node, PHP and Ruby. Official SDK coming soon.

Read the API documentation

Try it now →
Was this article helpful?

Related articles