Hi,
I’m looking for some advice or ideas on what I can do to make our rather large API a bit more manageable.
We use ServiceStack 5.10 which backs on to our ERP system. At present we have 598 routes - and we’re only about a third of the way through exposing all functionality we want.
ServiceStack doesn’t have a problem with this size - it’s third party tools/utilities like SwaggerUI, Postman and Microsoft Azure API Management which has a problem - they either perform really poorly, or refuse to interface with such a large API (Azure API Management for instance won’t import an openapi spec document greater than 1MB and we’re already at 2MB).
I was thinking of perhaps partitioning the API into different subdomains for the different areas of concern - such as:
That way things like SwaggerUI will cope better with the smaller API surface - but that brings a whole new set of problems relating to authentication and so on.
Can anyone throw some ideas out there for me?
Thanks,
Mike